diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-08-01 19:22:45 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-08-01 19:22:45 +0000 |
commit | 0bdbd33dcb5e5fdfd102d6d18328576b6175eb13 (patch) | |
tree | ef85cac5ed42ca1954229ca101153d3b62a2c776 /tools/quilt/patches | |
parent | e3b9933f663eeaad82b633536a7115320218ebaf (diff) | |
download | upstream-0bdbd33dcb5e5fdfd102d6d18328576b6175eb13.tar.gz upstream-0bdbd33dcb5e5fdfd102d6d18328576b6175eb13.tar.bz2 upstream-0bdbd33dcb5e5fdfd102d6d18328576b6175eb13.zip |
tools/quilt: fix spurious calls to the configure and Makefile targets (#8462)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27869 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/quilt/patches')
-rw-r--r-- | tools/quilt/patches/000-fix_compile.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/quilt/patches/000-fix_compile.patch b/tools/quilt/patches/000-fix_compile.patch new file mode 100644 index 0000000000..51a4f5e206 --- /dev/null +++ b/tools/quilt/patches/000-fix_compile.patch @@ -0,0 +1,18 @@ +--- a/Makefile.in ++++ b/Makefile.in +@@ -273,13 +273,10 @@ $(patsubst %.in,%,$(wildcard bin/*.in qu + lib/backup-files.o :: Makefile + + configure : configure.ac aclocal.m4 +- autoconf +- @echo "Please run ./configure" +- @false ++ @touch $@ + + Makefile : Makefile.in configure +- @echo "Please run ./configure" +- @false ++ @touch $@ + + compat_leftover := $(filter-out $(COMPAT),$(shell $(FIND) compat -maxdepth 1 -type f -perm +111)) + |