]> git.meshlink.io Git - catta/commitdiff
* Allow setting of NOCONFIGURE when running autogen.sh to bypass configure/make...
authorTrent Lloyd <lathiat@bur.st>
Mon, 12 Sep 2005 18:47:42 +0000 (18:47 +0000)
committerTrent Lloyd <lathiat@bur.st>
Mon, 12 Sep 2005 18:47:42 +0000 (18:47 +0000)
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@569 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe

autogen.sh

index a416dbe78eabc9d8a4e9b47e18ebebabbd327b35..9205c57c6c4cbe6285ff2a62d6e080854c73acf6 100755 (executable)
@@ -43,7 +43,8 @@ else
     autoheader
     run_versioned automake "$VERSION" -a -c --foreign
 
-    ./configure "$@"
-
-    make clean
+    if test "x$NOCONFIGURE" = "x"; then
+        ./configure "$@"
+        make clean
+    fi
 fi