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