From kde-commits Mon Apr 25 12:47:10 2005 From: David Faure Date: Mon, 25 Apr 2005 12:47:10 +0000 To: kde-commits Subject: kde-common/admin Message-Id: <20050425124710.0040D3EF () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=111443324110886 CVS commit by faure: The rest of the script still assumed "UNSERMAKE is empty when not using UNSERMAKE", which isn't the case anymore. M +3 -2 cvs.sh 1.154 --- kde-common/admin/cvs.sh #1.153:1.154 @@ -70,4 +70,5 @@ ;; automake*1.6.* | automake*1.7* | automake*1.8* | automake*1.9*) + echo "*** $AUTOMAKE_STRING found." UNSERMAKE=no ;; @@ -136,5 +137,5 @@ $AUTOMAKE || exit 1 -if test -z "$UNSERMAKE"; then +if test "$UNSERMAKE" != no; then echo "*** Postprocessing Makefile templates" perl -w admin/am_edit || exit 1 @@ -188,5 +189,5 @@ fi $AUTOMAKE --foreign -if test -z "$UNSERMAKE"; then +if test "$UNSERMAKE" != no; then echo "*** Postprocessing Makefile templates" perl -w admin/am_edit || exit 1