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/iproute2.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/iproute2.mk')
-rw-r--r-- | make/iproute2.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/make/iproute2.mk b/make/iproute2.mk index a048393b6..9819fdbad 100644 --- a/make/iproute2.mk +++ b/make/iproute2.mk @@ -29,14 +29,14 @@ $(IPROUTE2_DIR)/.unpacked: $(DL_DIR)/$(IPROUTE2_SOURCE) #$(DL_DIR)/$(IPROUTE2_PA touch $(IPROUTE2_DIR)/.unpacked $(IPROUTE2_DIR)/.configured: $(IPROUTE2_DIR)/.unpacked - sed -ie "s,-I/usr/include/db3,," $(IPROUTE2_DIR)/Makefile - sed -ie "s,^KERNEL_INCLUDE.*,KERNEL_INCLUDE=$(LINUX_DIR)/include," \ + sed -i -e "s,-I/usr/include/db3,," $(IPROUTE2_DIR)/Makefile + sed -i -e "s,^KERNEL_INCLUDE.*,KERNEL_INCLUDE=$(LINUX_DIR)/include," \ $(IPROUTE2_DIR)/Makefile - sed -ie "s,^LIBC_INCLUDE.*,LIBC_INCLUDE=$(STAGING_DIR)/include," \ + sed -i -e "s,^LIBC_INCLUDE.*,LIBC_INCLUDE=$(STAGING_DIR)/include," \ $(IPROUTE2_DIR)/Makefile # For now disable compiling of the misc directory because it seems to fail rm -rf $(IPROUTE2_DIR)/misc - sed -ie "s, misc,," $(IPROUTE2_DIR)/Makefile + sed -i -e "s, misc,," $(IPROUTE2_DIR)/Makefile touch $(IPROUTE2_DIR)/.configured $(IPROUTE2_DIR)/tc/tc: $(IPROUTE2_DIR)/.configured |