Changeset 4ee6aa92d66c6221f5818109ef78f0a793534a6d

Show
Ignore:
Timestamp:
05/28/07 20:27:44 (1 year ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1180376864 +0000
git-parent:

[ce39456cd4a6e82f1e67e248ab7ede8bb6c3cd3c]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1180376864 +0000
Message:

bootstrap: Warn if contrib hasn't been built (on Mac OS X). (good for new comers).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bootstrap

    r620dc72 r4ee6aa9  
    4141  fi 
    4242  if test ".`uname -s`" = ".Darwin"; then 
     43    # Make sure contrib has been built 
     44    if test ! -e ./extras/contrib/config.mak; then 
     45        set +x 
     46        echo "" 
     47        echo "ERR: Contribs haven't been built" 
     48        echo "ERR: Please run:" 
     49        echo "" 
     50        echo "ERR:    'cd extras/contrib && ./bootstrap && make && cd ../..'" 
     51        echo "" 
     52        echo "ERR: Make sure fink has been disabled too" 
     53        echo "" 
     54        set -x 
     55        exit 1 
     56    fi 
    4357    export LD_LIBRARY_PATH=./extras/contrib/lib:$LD_LIBRARY_PATH 
    4458    export DYLD_LIBRARY_PATH=./extras/contrib/lib:$DYLD_LIBRARY_PATH