]> git.sesse.net Git - vlc/commitdiff
bootstrap: Make sure we warn the user when no contrib is present on Mac OS X.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Wed, 20 Jun 2007 21:01:26 +0000 (21:01 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Wed, 20 Jun 2007 21:01:26 +0000 (21:01 +0000)
bootstrap

index 4fcb42bdf73c96cf1a8cc7acb16e41d5b2bd32ce..ee7caf7829953745b3ba107b259aff7a0209d94f 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -40,26 +40,27 @@ if test -d extras/contrib/bin; then
     ACLOCAL_ARGS="${ACLOCAL_ARGS} -I extras/contrib/share/aclocal"
   fi
   if test ".`uname -s`" = ".Darwin"; then
-    # Make sure contrib has been built
-    if test ! -e ./extras/contrib/config.mak; then
-        set +x
-        echo ""
-        echo "ERR: Contribs haven't been built"
-        echo "ERR: Please run:"
-        echo ""
-        echo "ERR:    'cd extras/contrib && ./bootstrap && make && cd ../..'"
-        echo ""
-        echo "ERR: Make sure fink has been disabled too"
-        echo ""
-        set -x
-        exit 1
-    fi
     export LD_LIBRARY_PATH=./extras/contrib/lib:$LD_LIBRARY_PATH
     export DYLD_LIBRARY_PATH=./extras/contrib/lib:$DYLD_LIBRARY_PATH
   elif test ".`uname -s`" = ".BeOS"; then
     export LIBRARY_PATH=./extras/contrib/lib:$LIBRARY_PATH
     export BELIBRARIES=./extras/contrib/lib:$BELIBRARIES
   fi
+elif test ".`uname -s`" = ".Darwin"; then
+  # Make sure contrib has been built
+  if test ! -e ./extras/contrib/config.mak; then
+    set +x
+    echo ""
+    echo "ERR: Contribs haven't been built"
+    echo "ERR: Please run:"
+    echo "ERR: "
+    echo "ERR:    'cd extras/contrib && ./bootstrap && make && cd ../..'"
+    echo "ERR: "
+    echo "ERR: Make sure fink has been disabled too."
+    echo ""
+    set -x
+    exit 1
+  fi
 fi
 
 # Check for autoconf