bug-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

noautomake.sh small bug


From: Stephen Cameron
Subject: noautomake.sh small bug
Date: Thu, 27 Sep 2001 14:47:41 -0700 (PDT)

noautomake.sh has an error, wildcards used
by "find" command must be protected from the shell
by quotes:

-- steve

Patch:

--- noautomake.sh.orig  Thu Sep 27 16:45:06 2001
+++ noautomake.sh       Thu Sep 27 16:45:00 2001
@@ -83,7 +83,7 @@

 # prevent Autoheader from running
 if $autoconf; then :; else
-       find . -name stamp-h?.in -exec touch {} \;
+       find . -name 'stamp-h?.in' -exec touch {} \;
 fi

 # prevent Autoconf from running

__________________________________________________
Do You Yahoo!?
Listen to your Yahoo! Mail messages from any phone.
http://phone.yahoo.com



reply via email to

[Prev in Thread] Current Thread [Next in Thread]