diff --git a/tools/build/build44 b/tools/build/build44 index b5412f34c..80f8974ec 100755 --- a/tools/build/build44 +++ b/tools/build/build44 @@ -38,9 +38,9 @@ # If no options are given, all options are assumed. # # If is given, patch files reflecting the differences -# between that version and the current version ( ) are generated -# generated. The directory ./shorewall- must exist and -# contain the version against which the patch is generated. +# between that version and the current version ( ) are generated. +# The directory ./shorewall- must exist and contain the +# version against which the patch is generated. ################################################################################ # C O N F I G U R A T I O N ################################################################################ @@ -906,7 +906,7 @@ if [ -n "$OLDVERSION" ]; then progress_message "Creating patch-$VERSION ..." - [ -d shorewall$VERSION ] && diff -Naur -X $(dirname $0)/exclude.txt shorewall-$OLDVERSION shorewall-$VERSION > patch-$VERSION || true + [ -d shorewall-$VERSION ] && diff -Naur -X $(dirname $0)/exclude.txt shorewall-$OLDVERSION shorewall-$VERSION > patch-$VERSION || true [ -d shorewall6-$VERSION ] && diff -Naur -X $(dirname $0)/exclude.txt shorewall6-$OLDVERSION shorewall6-$VERSION > patch-6-$VERSION || true [ -d shorewall-lite-$VERSION ] && diff -Naur -X $(dirname $0)/exclude.txt shorewall-lite-$OLDVERSION shorewall-lite-$VERSION > patch-lite-$VERSION || true [ -d shorewall6-lite-$VERSION ] && diff -Naur -X $(dirname $0)/exclude.txt shorewall6-lite-$OLDVERSION shorewall6-lite-$VERSION > patch-6-lite-$VERSION || true