From afeab58a3cdc9b6ff4dae42613e21952c6e4a3f6 Mon Sep 17 00:00:00 2001 From: Geoff Thorpe Date: Wed, 20 Feb 2002 05:09:22 +0000 Subject: [PATCH] Make the "ungunk" logic a little more robust. --- demos/tunala/autoungunk.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/demos/tunala/autoungunk.sh b/demos/tunala/autoungunk.sh index 14d10790fd..0c9123b6cf 100755 --- a/demos/tunala/autoungunk.sh +++ b/demos/tunala/autoungunk.sh @@ -4,13 +4,13 @@ # mess has been left in the directory thanks to autoconf, automake, and their # friends. -if test -f Makefile; then - make distclean - rm -f Makefile -fi - if test -f Makefile.plain; then + if test -f Makefile; then + make distclean + fi mv Makefile.plain Makefile +else + make clean fi rm -f aclocal.m4 config.* configure install-sh \ -- 2.34.1