summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/install/NEWS2
-rw-r--r--perl-install/install/pkgs.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 714d5e22a..a3c7743b6 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- fix reading rpm macros from /etc/macros.d/ (esp. %_filetriggers_dir)
+
Version 10.41 - 26 June 2008
- 2009.0 alpha 1 logo
diff --git a/perl-install/install/pkgs.pm b/perl-install/install/pkgs.pm
index bb9effd82..b7c3662f4 100644
--- a/perl-install/install/pkgs.pm
+++ b/perl-install/install/pkgs.pm
@@ -5,7 +5,7 @@ use strict;
BEGIN {
# needed before "use URPM"
mkdir '/etc/rpm';
- symlink "/tmp/stage2/etc/rpm/$_", "/etc/rpm/$_" foreach 'platform', 'macros.cdb';
+ symlink "/tmp/stage2/etc/rpm/$_", "/etc/rpm/$_" foreach 'macros.d';
}
use URPM;