diff options
Diffstat (limited to 'perly.fixer')
-rwxr-xr-x | perly.fixer | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/perly.fixer b/perly.fixer index 58ea1a5923..8dc533efc1 100755 --- a/perly.fixer +++ b/perly.fixer @@ -10,6 +10,13 @@ input=$1 output=$2 tmp=/tmp/f$$ +if test -f perly.c.diff; then + cp $input $output + patch -F3 <perly.c.diff + rm -rf $input + exit +fi + plan="unknown" # Test for BSD 4.3 version. |