diff options
author | Trent Lloyd <lathiat@bur.st> | 2005-09-12 18:47:42 +0000 |
---|---|---|
committer | Trent Lloyd <lathiat@bur.st> | 2005-09-12 18:47:42 +0000 |
commit | 10dd71bc7839270de1ddfc61c57a98e89117db14 (patch) | |
tree | 75828e39cc7bfd9eb5c044c29402f04148e3e1a0 | |
parent | 4d283fbd912fbeab578447ea18c0d8f47aa5cea6 (diff) |
* Allow setting of NOCONFIGURE when running autogen.sh to bypass configure/make clean
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@569 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
-rwxr-xr-x | autogen.sh | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |