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/ntp.mk | |
parent | 5dc91b65204888e9ddbfdd7120f46c8a96f93f98 (diff) | |
download | buildroot-novena-79c815622a1698fc874d4dfa050491f7f20444b5.tar.gz buildroot-novena-79c815622a1698fc874d4dfa050491f7f20444b5.zip |
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/ntp.mk')
-rw-r--r-- | make/ntp.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/ntp.mk b/make/ntp.mk index 4b213339e..a13e99b55 100644 --- a/make/ntp.mk +++ b/make/ntp.mk @@ -18,7 +18,7 @@ ntp-source: $(DL_DIR)/$(NTP_SOURCE) $(NTP_DIR)/.unpacked: $(DL_DIR)/$(NTP_SOURCE) $(NTP_CAT) $(DL_DIR)/$(NTP_SOURCE) | tar -C $(BUILD_DIR) -xvf - - sed -ie "s,^#if.*__GLIBC__.*_BSD_SOURCE.*$$,#if 0," \ + sed -i -e "s,^#if.*__GLIBC__.*_BSD_SOURCE.*$$,#if 0," \ $(NTP_DIR)/ntpd/refclock_pcf.c; touch $(NTP_DIR)/.unpacked |