From 15e008483d1934c183f587aaa4fb42dc326095dc Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 13 Jun 2005 10:21:09 +0000 Subject: [PATCH] [project @ 2005-06-13 10:21:09 by simonmar] Use perl rather than sed to munge the package.conf file; avoids portability problems with sed (previous version didn't work on Solaris). --- distrib/Makefile-bin.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in index ebd59e5..2175b74 100644 --- a/distrib/Makefile-bin.in +++ b/distrib/Makefile-bin.in @@ -169,8 +169,7 @@ config-pkgs :: @for i in $(PACKAGE_LIB_SPLICED_FILES) ""; do \ if test "$$i"; then \ echo "Creating a configured version of $$i .."; \ - if [ -f lib/$(platform)/$$i ]; then $(MV) lib/$(platform)/$$i lib/$(platform)/$$i.bak; fi; \ - $(SED) -e "s|\$$libdir|$(libdir)|g;s|\$$datadir|$(datadir)|g" lib/$(platform)/$$i; \ + $(PERL) -i.bak -lpe 's|\$$libdir|$(libdir)|g;s|\$$datadir|$(datadir)|g' lib/$(platform)/$$i; \ fi; \ done @if test "$(platform)" = "powerpc-apple-darwin"; then \ -- 1.7.10.4