[Spice-devel] [usbredir PATCH 3/6] autogen.sh: do not run ./configure if env variable NOCONFIGURE is defined
Uri Lublin
uril at redhat.com
Thu May 3 08:04:36 PDT 2012
---
autogen.sh | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/autogen.sh b/autogen.sh
index 52083e5..568f718 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,4 +1,6 @@
#!/bin/sh
autoreconf -fi
-./configure $@
+if [ -z "$NOCONFIGURE" ]; then
+ ./configure $@
+fi
--
1.7.7.6
More information about the Spice-devel
mailing list