diff options
author | 2006-12-18 10:17:46 +0000 | |
---|---|---|
committer | 2006-12-18 10:17:46 +0000 | |
commit | 9ed8c96855dbe05894965c369aeb15508aaeaaa4 (patch) | |
tree | 155b66a035073843599a48a31375a5a441bb1126 /patches | |
parent | Announce the patchset first and the targets one by one later. (diff) | |
download | autoepatch-9ed8c96855dbe05894965c369aeb15508aaeaaa4.tar.gz autoepatch-9ed8c96855dbe05894965c369aeb15508aaeaaa4.tar.bz2 autoepatch-9ed8c96855dbe05894965c369aeb15508aaeaaa4.zip |
Filter the list of targets for the kde-autoconf patch: if autoconf 2.6 is already handled just skip them.
svn path=/trunk/; revision=11
Diffstat (limited to 'patches')
-rw-r--r-- | patches/kde-autoconf/kde-autoconf.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/patches/kde-autoconf/kde-autoconf.sh b/patches/kde-autoconf/kde-autoconf.sh index 9ea9d53..98689a5 100644 --- a/patches/kde-autoconf/kde-autoconf.sh +++ b/patches/kde-autoconf/kde-autoconf.sh @@ -8,7 +8,8 @@ patch_targets() { || return 0 # Find the admindir, wherever it is. - find "${WORKDIR}" -path '*/admin/cvs.sh' -type f + find "${WORKDIR}" -path '*/admin/cvs.sh' -type f -print0 | \ + xargs -0 fgrep -L 'autoconf*2.6*' } # This patch is always required |