From: simonmar Date: Mon, 13 Jun 2005 10:21:09 +0000 (+0000) Subject: [project @ 2005-06-13 10:21:09 by simonmar] X-Git-Tag: Initial_conversion_from_CVS_complete~438 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=15e008483d1934c183f587aaa4fb42dc326095dc [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). --- 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 \