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/pcmcia.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/pcmcia.mk')
-rw-r--r-- | make/pcmcia.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/make/pcmcia.mk b/make/pcmcia.mk index 3c40485df..3508bc067 100644 --- a/make/pcmcia.mk +++ b/make/pcmcia.mk @@ -45,9 +45,9 @@ $(PCMCIA_DIR)/.configured: $(PCMCIA_DIR)/.patched --rcdir=/etc --arch=$(ARCH) --trust --srctree --nocardbus \ --sysv --kcc=$(KERNEL_CROSS)gcc --ucc=$(TARGET_CC) --ld=$(TARGET_CROSS)ld \ --target=$(TARGET_DIR)) - sed -ie "s/pump/udhcpc/" $(PCMCIA_DIR)/etc/network - sed -ie "s/ide_cs/ide-cs/" $(PCMCIA_DIR)/etc/config - sed -ie "s/bind \"wvlan_cs\"/bind \"orinoco_cs\"/g" $(PCMCIA_DIR)/etc/config + sed -i -e "s/pump/udhcpc/" $(PCMCIA_DIR)/etc/network + sed -i -e "s/ide_cs/ide-cs/" $(PCMCIA_DIR)/etc/config + sed -i -e "s/bind \"wvlan_cs\"/bind \"orinoco_cs\"/g" $(PCMCIA_DIR)/etc/config touch $(PCMCIA_DIR)/.configured $(PCMCIA_DIR)/cardmgr/cardmgr: $(PCMCIA_DIR)/.configured |