diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-30 16:01:06 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-30 16:01:06 +0100 |
commit | c3c50b45244d5c94e1b880b37c3da202ed70fceb (patch) | |
tree | b76a992fe898a1e4e71ded2b4c0dded78cd4bd8a /scripts/update-patches | |
parent | fdeed9b0c762e9f700f3e45869ec58057da449a1 (diff) | |
parent | 61cc800e46cc943824dc6a0b8e8d413f2795db9f (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts/update-patches')
-rw-r--r-- | scripts/update-patches | 5 |
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 |