summaryrefslogtreecommitdiffstats
path: root/tools/install-xml-file-list
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-05-13 00:12:52 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-05-13 00:12:52 +0000
commitf8188bbf8b30713fef940cc38633d1927486b194 (patch)
tree915b0e5adede9339a3d83692fdba672e4bcb0988 /tools/install-xml-file-list
parent6e9a885b259458dfcbd86284a3292e2ba10d6098 (diff)
downloaddrakx-backup-do-not-use-f8188bbf8b30713fef940cc38633d1927486b194.tar
drakx-backup-do-not-use-f8188bbf8b30713fef940cc38633d1927486b194.tar.gz
drakx-backup-do-not-use-f8188bbf8b30713fef940cc38633d1927486b194.tar.bz2
drakx-backup-do-not-use-f8188bbf8b30713fef940cc38633d1927486b194.tar.xz
drakx-backup-do-not-use-f8188bbf8b30713fef940cc38633d1927486b194.zip
allow makefile like variables
Diffstat (limited to 'tools/install-xml-file-list')
-rwxr-xr-xtools/install-xml-file-list2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install-xml-file-list b/tools/install-xml-file-list
index 0cd1fc1cc..df760ae32 100755
--- a/tools/install-xml-file-list
+++ b/tools/install-xml-file-list
@@ -102,7 +102,7 @@ sub expand_macros {
my ($f) = @_;
$f =~ s!\bLIB\b!$LIB!g;
$f =~ s!\bARCH\b!$ARCH!ge;
- $f =~ s!\bREP4PMS\b!$ENV{REP4PMS} || die "REP4PMS undefined\n"!ge;
+ $f =~ s!\$\((\w+)\)!$ENV{$1} || die "$1 undefined\n"!ge;
$f;
}