Add namespace and version to libfolks-tracker GIR
[platform/upstream/folks.git] / autogen.sh
index 68d1f59..b3b63b1 100755 (executable)
@@ -17,16 +17,20 @@ fi
 autoreconf -i -f
 intltoolize --force --copy --automake
 
-run_configure=true
-for arg in $*; do
-    case $arg in
-        --no-configure)
-            run_configure=false
-            ;;
-        *)
-            ;;
-    esac
-done
+if test -z "$NOCONFIGURE"; then
+    run_configure=true
+    for arg in $*; do
+       case $arg in
+            --no-configure)
+               run_configure=false
+               ;;
+            *)
+               ;;
+       esac
+    done
+else
+    run_configure=false
+fi
 
 if test $run_configure = true; then
     ./configure "$@"