diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-13 06:02:20 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-13 06:02:20 +0000 |
commit | 620dd7c5fd1895001a2c680d5dd1dbdbb6f3101d (patch) | |
tree | aa08afb7d58fabed8f365bf373751992b792680c /make/tinylogin.mk | |
parent | 192bace39e7c0fe5c4ccf9add25b67cb37f8abdc (diff) | |
download | buildroot-novena-620dd7c5fd1895001a2c680d5dd1dbdbb6f3101d.tar.gz buildroot-novena-620dd7c5fd1895001a2c680d5dd1dbdbb6f3101d.zip |
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,
Diffstat (limited to 'make/tinylogin.mk')
-rw-r--r-- | make/tinylogin.mk | 6 |
1 files changed, 3 insertions, 3 deletions
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 |