From b378c1a09b834a8cc74c8139405fc542fd15b253 Mon Sep 17 00:00:00 2001 From: teastep Date: Mon, 2 Mar 2009 20:51:18 +0000 Subject: [PATCH] Fix patch generation git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@9577 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- tools/build/build44 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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