summaryrefslogtreecommitdiffstats
path: root/scripts/patchfns.in
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2003-11-04 15:53:15 +0000
committerAndreas Gruenbacher <agruen@suse.de>2003-11-04 15:53:15 +0000
commit477c8a0b21b5f546904574e630139736cdaf2951 (patch)
tree1fc7a384a3ae98a0ed854cad0e6dd538962caf3b /scripts/patchfns.in
parent11006bdc9ed6c400cca019886f395febc9110b06 (diff)
downloadquilt-477c8a0b21b5f546904574e630139736cdaf2951.tar.gz
- Add failpop.test that checks if modified patches are recognized.
- Fix the check for modified patches: That broke with the .pc file removal.
Diffstat (limited to 'scripts/patchfns.in')
-rw-r--r--scripts/patchfns.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/patchfns.in b/scripts/patchfns.in
index 8b0f3af..2ddf7ac 100644
--- a/scripts/patchfns.in
+++ b/scripts/patchfns.in
@@ -400,7 +400,8 @@ files_in_patch()
local path=".pc/$patch"
if [ -d "$path" ]
then
- for file in $(find "$path" -type f)
+ for file in $(find "$path" -type f \
+ -a ! -path "$path/.timestamp")
do
echo "${file:${#path}+1}"
done