diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2013-02-17 13:22:28 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-02-22 23:34:39 +0100 |
commit | 4667e1cb86ebcad372c61c72c8ad0f15a30d0552 (patch) | |
tree | 3843277105d8f18080910fffd61403c3af375030 /package/tvheadend/tvheadend-002-no-check_config.patch | |
parent | 7f68a28d78eee37dd32f0fcf9083e86ad1e79485 (diff) | |
download | buildroot-novena-4667e1cb86ebcad372c61c72c8ad0f15a30d0552.tar.gz buildroot-novena-4667e1cb86ebcad372c61c72c8ad0f15a30d0552.zip |
package/tvheadend: update to v3.5
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/tvheadend/tvheadend-002-no-check_config.patch')
-rw-r--r-- | package/tvheadend/tvheadend-002-no-check_config.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/package/tvheadend/tvheadend-002-no-check_config.patch b/package/tvheadend/tvheadend-002-no-check_config.patch new file mode 100644 index 000000000..a0edcdcfd --- /dev/null +++ b/package/tvheadend/tvheadend-002-no-check_config.patch @@ -0,0 +1,23 @@ +Makefile: do not use check_config + +test(1) only uses the second to compare two files dates. +test(1) also does a strict comparison wrt. dates. + +But, on very fast systems, the configure and .config.mk +files may be created in the same second, and so would lead +to a false comparison of the files' dates. + +Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> + +diff -durN tvheadend-v3.5.orig/Makefile tvheadend-v3.5/Makefile +--- tvheadend-v3.5.orig/Makefile 2013-02-17 15:15:03.228749505 +0100 ++++ tvheadend-v3.5/Makefile 2013-02-17 15:15:51.591923062 +0100 +@@ -246,7 +246,7 @@ + $(CURDIR)/configure $(CONFIGURE_ARGS) + + # Binary +-${PROG}: check_config $(OBJS) $(ALLDEPS) ++${PROG}: $(OBJS) $(ALLDEPS) + $(CC) -o $@ $(OBJS) $(CFLAGS) $(LDFLAGS) + + # Object |