[project @ 2005-06-13 10:21:09 by simonmar]
authorsimonmar <unknown>
Mon, 13 Jun 2005 10:21:09 +0000 (10:21 +0000)
committersimonmar <unknown>
Mon, 13 Jun 2005 10:21:09 +0000 (10:21 +0000)
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

index ebd59e5..2175b74 100644 (file)
@@ -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.bak >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 \