diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-12-29T22·17+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-12-29T22·17+0000 |
commit | 6270aa727d63ce4a4d27280f233a55f4c67d8285 (patch) | |
tree | d343758d7c18a2285f3edd28b316344645f4e347 /scripts/readmanifest.pm.in | |
parent | 4f07ebc67e74629724c441352a58b12143383129 (diff) |
* Propagate patches from the source distribution to the destination
distribution insofar they are applicable.
Diffstat (limited to 'scripts/readmanifest.pm.in')
-rw-r--r-- | scripts/readmanifest.pm.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/readmanifest.pm.in b/scripts/readmanifest.pm.in index 31ea5f43cc56..8b9920b798d5 100644 --- a/scripts/readmanifest.pm.in +++ b/scripts/readmanifest.pm.in @@ -23,9 +23,9 @@ sub addPatch { } } - if (!$found) { - push @{$patchList}, $patch; - } + push @{$patchList}, $patch if !$found; + + return !$found; } |