diff options
author | Danomi Manchego <danomimanchego123@gmail.com> | 2015-07-05 16:52:25 -0400 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-07-06 09:53:38 +0200 |
commit | 7917152f1353d670f5ada4a2f68397c339106d2c (patch) | |
tree | 5cf6b0ed88cb6da4c274d17528dc474483148fce | |
parent | ff89e1eb0cdb8ebe9cbd2cf944f43ed132afcb17 (diff) | |
download | buildroot-7917152f1353d670f5ada4a2f68397c339106d2c.tar.gz buildroot-7917152f1353d670f5ada4a2f68397c339106d2c.zip |
ntp: drop uselss patch fixup which sometimes breaks rebuild
Drop sed line which no longer changes anything as upstream has changed to
use strrchr. Worse, it bumps each ntpd/*.c file's modification time, which
sometimes triggers a strange dependency path causing the makefile to attempt
to run the ntpd keyword-gen app, which fails, because it's been
cross-compiled.
Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/ntp/ntp.mk | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/package/ntp/ntp.mk b/package/ntp/ntp.mk index 5f05508133..93cefa1102 100644 --- a/package/ntp/ntp.mk +++ b/package/ntp/ntp.mk @@ -42,7 +42,6 @@ endif define NTP_PATCH_FIXUPS $(SED) "s,^#if.*__GLIBC__.*_BSD_SOURCE.*$$,#if 0," $(@D)/ntpd/refclock_pcf.c - $(SED) '/[[:space:](]rindex[[:space:]]*(/s/[[:space:]]*rindex[[:space:]]*(/ strrchr(/g' $(@D)/ntpd/*.c endef NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTP_KEYGEN) += util/ntp-keygen |