Error Buddy

Do you have an error message from your application? Then find the answer with Error Buddy. You can search over 40000 source code files and troubleshooting documents using our beta lucene/nutch search interface or if you prefer, search as normal using google. With LXR technology you can drill right down into the line of source code where it came from with full cross-referencing.

If after searching you didn't get your ideal answer, or you are still unclear what the error means, you can choose to post that question to the community forums following the link included in the search results.

corestack/ libtool-1.5.14/ bootstrap [1.6]
001 #! /bin/sh
002 
003 # helps bootstrapping libtool, when checked out from CVS
004 # requires at least GNU autoconf 2.50 and GNU automake1.4-p5
005 
006 rm -rf `find . -path './{arch}' -prune -o \( -name autom4te.cache -o -name libtool \) -print`
007 
008 # Delete stale acinclude.m4 from previous libtool versions.
009 rm -f acinclude.m4
010 
011 : ${ACLOCAL=aclocal}
012 : ${AUTOMAKE=automake}
013 : ${AUTOCONF=autoconf}
014 : ${AUTOHEADER=autoheader}
015 
016 # fake the libtool scripts
017 touch ltmain.sh
018 touch libtoolize
019 (cd libltdl && touch ltmain.sh)
020 
021 for sub in . libltdl cdemo demo depdemo mdemo mdemo2 pdemo tagdemo f77demo; do
022   case $sub in
023   .)
024     top_srcdir=.
025     acfiles="$top_srcdir/libtool.m4"
026     AUTOMAKE_FLAGS="--gnu --add-missing --copy"
027     ;;
028   libltdl)
029     top_srcdir=..
030     acfiles="$top_srcdir/libtool.m4 $top_srcdir/ltdl.m4"
031     AUTOMAKE_FLAGS="--gnits --add-missing --copy"
032     ;;
033   *)
034     top_srcdir=..
035     acfiles="$top_srcdir/libtool.m4"
036     AUTOMAKE_FLAGS="--gnits --add-missing"
037     ;;
038   esac
039 
040   cd $sub
041   rm -f acinclude.m4 aclocal.m4 Makefile configure
042   for file in $acfiles; do
043     cat $file >> ./acinclude.m4
044   done
045 
046   $ACLOCAL
047   test $sub = libltdl && $AUTOHEADER
048   test $sub = f77demo && $AUTOHEADER
049   eval $AUTOMAKE $AUTOMAKE_FLAGS
050   $AUTOCONF
051   cd $top_srcdir
052 done
053 
054 rm -f ltmain.sh libtoolize libltdl/ltmain.sh
055 
056 exit 0

Powered by Lucene and the LXR engine.