summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-30 15:46:44 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-30 15:46:44 +0100
commit5ce633839096d25a684af6978ba9da7d6d34fdaf (patch)
tree2379b5712847a7b6d5f50c8850a21757512db336 /scripts
parentd9692a11d574a39deaf6f171dcfae7aa0d4a63d4 (diff)
fix update-patches when WRKDIST is overwritten in the Makefile
Diffstat (limited to 'scripts')
-rw-r--r--scripts/update-patches5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/update-patches b/scripts/update-patches
index a180b96be..f4303f841 100644
--- a/scripts/update-patches
+++ b/scripts/update-patches
@@ -91,6 +91,11 @@ for file in $(cd ${WRKDIST}; find . -type f | sed 's#^\./##'); do
echo "DEBUG: $file" >> /tmp/debug
[[ ! -e $ORGDIST/$file && $patch_newfiles = 0 ]] && continue
[[ $file = configure && $ignore_autoconf = 1 ]] && continue
+ [[ $file = missing && $ignore_autoconf = 1 ]] && continue
+ [[ $file = depcomp && $ignore_autoconf = 1 ]] && continue
+ [[ $file = install-sh && $ignore_autoconf = 1 ]] && continue
+ [[ $file = aclocal.m4 && $ignore_autoconf = 1 ]] && continue
+ [[ $file = INSTALL && $ignore_autoconf = 1 ]] && continue
[[ $file = config.h.in && $ignore_autoconf = 1 ]] && continue
[[ $(basename $file) = Makefile.in && $ignore_autoconf = 1 ]] && continue
cmp -s "$ORGDIST/$file" "$WRKDIST/$file" && continue