diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-18 07:18:26 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-18 07:18:26 +0000 |
commit | 79c815622a1698fc874d4dfa050491f7f20444b5 (patch) | |
tree | 6e3162ab49173435fb91c6a3e1465655674bc4cc /make/pppd.mk | |
parent | 5dc91b65204888e9ddbfdd7120f46c8a96f93f98 (diff) |
Change 'sed -ie' to 'sed -i -e' to avoid littering the build
with lots of unwanted backup files with the letter "e" appended.
-Erik
Diffstat (limited to 'make/pppd.mk')
-rw-r--r-- | make/pppd.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/make/pppd.mk b/make/pppd.mk index f023fb38e..cf25ac8be 100644 --- a/make/pppd.mk +++ b/make/pppd.mk @@ -18,10 +18,10 @@ pppd-source: $(DL_DIR)/$(PPPD_SOURCE) $(PPPD_DIR)/.unpacked: $(DL_DIR)/$(PPPD_SOURCE) $(PPPD_CAT) $(DL_DIR)/$(PPPD_SOURCE) | tar -C $(BUILD_DIR) -xvf - - sed -ie 's/ -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP//' $(PPPD_DIR)/pppd/Makefile.linux - sed -ie 's/$(INSTALL) -s/$(INSTALL)/' $(PPPD_DIR)/*/Makefile.linux - sed -ie 's/ -o root//' $(PPPD_DIR)/*/Makefile.linux - sed -ie 's/ -g daemon//' $(PPPD_DIR)/*/Makefile.linux + sed -i -e 's/ -DIPX_CHANGE -DHAVE_MULTILINK -DHAVE_MMAP//' $(PPPD_DIR)/pppd/Makefile.linux + sed -i -e 's/$(INSTALL) -s/$(INSTALL)/' $(PPPD_DIR)/*/Makefile.linux + sed -i -e 's/ -o root//' $(PPPD_DIR)/*/Makefile.linux + sed -i -e 's/ -g daemon//' $(PPPD_DIR)/*/Makefile.linux touch $(PPPD_DIR)/.unpacked $(PPPD_DIR)/.configured: $(PPPD_DIR)/.unpacked |