]> git.mxchange.org Git - flightgear.git/blobdiff - autogen.sh
changes for SGPropertyNode::getPath return type
[flightgear.git] / autogen.sh
index 22d20ab620acf1658dfcf288081b3b56ce4d8564..6f1d9967d7d18d1222ec57c1e22ed85c94e226db 100755 (executable)
@@ -5,13 +5,22 @@ aclocal
 
 echo "Running autoheader"
 autoheader
+if [ ! -e src/Include/config.h.in ]; then
+    echo "ERROR: autoheader didn't create simgear/simgear_config.h.in!"
+    exit 1
+fi    
 
-echo "Running automake"
+echo "Running automake --add-missing"
 automake --add-missing
 
 echo "Running autoconf"
 autoconf
 
+if [ ! -e configure ]; then
+    echo "ERROR: configure was not created!"
+    exit 1
+fi
+
 echo ""
 echo "======================================"