From 620dd7c5fd1895001a2c680d5dd1dbdbb6f3101d Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 13 Nov 2003 06:02:20 +0000 Subject: By popular demand, use 'sed' rather than 'perl' for doing search and replace stuff. Hopefully we do not have any perl specific regexs that will be broken by this change, but it seems to be working thus far anyways, --- make/tinylogin.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'make/tinylogin.mk') diff --git a/make/tinylogin.mk b/make/tinylogin.mk index d24987712..a8de25d0b 100644 --- a/make/tinylogin.mk +++ b/make/tinylogin.mk @@ -24,11 +24,11 @@ tinylogin-source: $(DL_DIR)/$(TINYLOGIN_SOURCE) $(TINYLOGIN_DIR)/Config.h: $(DL_DIR)/$(TINYLOGIN_SOURCE) bzcat $(DL_DIR)/$(TINYLOGIN_SOURCE) | tar -C $(BUILD_DIR) -xvf - - perl -i -p -e "s/\`id -u\` -ne 0/0 == 1/;" \ + sed -ie "s/\`id -u\` -ne 0/0 == 1/;" \ -e "s/4755 --owner=root --group=root/755/" \ $(TINYLOGIN_DIR)/install.sh - perl -i -p -e "s/^DOSTATIC.*/DOSTATIC=false/g;" $(TINYLOGIN_DIR)/Makefile - perl -i -p -e "s/^DODEBUG.*/DODEBUG=false/g;" $(TINYLOGIN_DIR)/Makefile + sed -ie "s/^DOSTATIC.*/DOSTATIC=false/g;" $(TINYLOGIN_DIR)/Makefile + sed -ie "s/^DODEBUG.*/DODEBUG=false/g;" $(TINYLOGIN_DIR)/Makefile # date test this one touch $(TINYLOGIN_DIR)/Config.h -- cgit v1.2.3