Changeset 44 for sources/bootstrap
- Timestamp:
- Aug 24, 2009, 1:47:11 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sources/bootstrap
r27 r44 1 1 #! /bin/sh 2 # $Id: bootstrap 1974 2008-04-04 11:32:24Z sam $2 # $Id: bootstrap 2005 2008-07-16 20:51:50Z sam $ 3 3 4 4 # bootstrap: generic bootstrap/autogen.sh script for autotools projects … … 30 30 # Check for needed features 31 31 auxdir="`sed -ne 's/^[ \t]*A._CONFIG_AUX_DIR *([[ ]*\([^] )]*\).*/\1/p' $conffile`" 32 libtool="`grep -q '^[ \t]*A._PROG_LIBTOOL' $conffile&& echo yes || echo no`"33 header="`grep -q '^[ \t]*A._CONFIG_HEADER' $conffile&& echo yes || echo no`"32 libtool="`grep '^[ \t]*A._PROG_LIBTOOL' $conffile >/dev/null 2>&1 && echo yes || echo no`" 33 header="`grep '^[ \t]*A._CONFIG_HEADER' $conffile >/dev/null 2>&1 && echo yes || echo no`" 34 34 makefile="`[ -f Makefile.am ] && echo yes || echo no`" 35 35 aclocalflags="`sed -ne 's/^[ \t]*ACLOCAL_AMFLAGS[ \t]*=//p' Makefile.am 2>/dev/null || :`"
Note: See TracChangeset
for help on using the changeset viewer.