From ca00c004c65ea66650d679a584911fd903229e62 Mon Sep 17 00:00:00 2001 From: teastep Date: Sat, 24 Nov 2007 21:19:53 +0000 Subject: [PATCH] Create/fetch known_problem file in buildshorewall git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@7755 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- tools/build/buildshorewall | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tools/build/buildshorewall b/tools/build/buildshorewall index f3d3206a9..b5f3c198d 100755 --- a/tools/build/buildshorewall +++ b/tools/build/buildshorewall @@ -894,6 +894,17 @@ for file in *; do esac done +if [ -n "$PATCHRELEASE" ]; then + svn update ~/shorewall/tags/${VERSION%-*} + if [ -f ~/shorewall/tags/${VERSION%-*}/known_problems.txt ]; then + cp ~/shorewall/tags/${VERSION%-*}/known_problems.txt . + else + echo "There are no known problems in Shorewall version $VERSION" > known_problems.txt + fi +else + echo "There are no known problems in Shorewall version $VERSION" > known_problems.txt +fi + if [ -n "$OLDVERSION" ]; then progress_message "Creating patch-$VERSION ..."