aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Rousse <guillomovitch@mandriva.org>2007-03-06 09:45:33 +0000
committerGuillaume Rousse <guillomovitch@mandriva.org>2007-03-06 09:45:33 +0000
commit6b07ee3631f792cc4b4127d50731e8166df8c46f (patch)
treeb3d01e0b4fa17b29d1150b6d9e07ad2b0efe0948
parentef3a09745cf10f641f76879859323f3f8632d019 (diff)
downloadrpm-helper-6b07ee3631f792cc4b4127d50731e8166df8c46f.tar
rpm-helper-6b07ee3631f792cc4b4127d50731e8166df8c46f.tar.gz
rpm-helper-6b07ee3631f792cc4b4127d50731e8166df8c46f.tar.bz2
rpm-helper-6b07ee3631f792cc4b4127d50731e8166df8c46f.tar.xz
rpm-helper-6b07ee3631f792cc4b4127d50731e8166df8c46f.zip
don't execute macro at expansion time, they are supposed to be executed during installation
-rw-r--r--rpm-helper.macros.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpm-helper.macros.in b/rpm-helper.macros.in
index 618faeb..5cd7ee2 100644
--- a/rpm-helper.macros.in
+++ b/rpm-helper.macros.in
@@ -3,10 +3,10 @@
%_rpm_helper_dir @pkgdatadir@
%_get_password_helper %_rpm_helper_dir/get-password
-%_get_password() %(%_get_password_helper %{1})
+%_get_password() %_get_password_helper %{1}
%_get_free_syslog_facility_helper %_rpm_helper_dir/get-free-syslog-facility
-%_get_free_syslog_facility() %(%_get_free_syslog_facility_helper)
+%_get_free_syslog_facility() %_get_free_syslog_facility_helper
%_create_ghostfile_helper %_rpm_helper_dir/create-file
%_create_ghostfile() %_create_ghostfile_helper %{name} $1 %{1} %{2} %{3} %{4} \