]> granicus.if.org Git - graphviz/commitdiff
repair damage to autogen.sh
authorellson <devnull@localhost>
Mon, 4 Aug 2008 20:38:30 +0000 (20:38 +0000)
committerellson <devnull@localhost>
Mon, 4 Aug 2008 20:38:30 +0000 (20:38 +0000)
autogen.sh

index 6fff5feb0032ab9f1a9d052d2faa1539cdc54adc..559bd5b3de4364548af11fee470c3c1f10d6af57 100755 (executable)
@@ -1,13 +1,19 @@
 #! /bin/sh
 
-autoreconf - v-- install-- force || exit 1
+autoreconf -v --install --force || exit 1
+
 # ensure config/depcomp exists even if still using automake-1.4
 # otherwise "make dist" fails.
-    touch config / depcomp
+touch config/depcomp
+
 #create an empty config/config.rpath else iconf configure test generates a warning
-    touch config / config.rpath
+touch config/config.rpath
+
 # ensure COPYING is based on cpl1.0.txt
-#   cpl1.0.txt was obtained from: http:        //www.opensource.org/licenses/cpl1.0.txt
-    rm - f COPYING cp cpl1 .0.txt COPYING
+#   cpl1.0.txt was obtained from: http://www.opensource.org/licenses/cpl1.0.txt
+rm -f COPYING
+cp cpl1.0.txt COPYING
+
 # don't use any old cache, but create a new one
-    rm - f config.cache. / configure - C "$@"
+rm -f config.cache
+./configure -C "$@"