Changeset 2015:5e51c9eb5e83 in lemon-0.x for bootstrap
- Timestamp:
- 03/24/06 21:27:42 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2650
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
bootstrap
r2012 r2015 1 1 #!/bin/bash 2 3 quiet=0 4 function quiet { [[ $quiet == 1 ]]; } 5 6 if [[ "$1" == "-q" ]]; then 7 quiet=1 8 shift 9 fi 2 10 3 11 prev= … … 68 76 fi 69 77 70 echo "Try using 'autoreconf -vi' instead of this."78 quiet || echo "Try using 'autoreconf -vi' instead of this." 71 79 72 set -x 73 $aclocal -I m4 \ 74 && libtoolize --force --copy \ 75 && $autoconf \ 76 && $autoheader \ 77 && $automake --add-missing --copy --gnu 80 set -e 81 quiet || set -x 82 83 $aclocal -I m4 84 (quiet && exec > /dev/null; libtoolize --force --copy) 85 $autoconf 86 $autoheader 87 $automake --add-missing --copy --gnu
Note: See TracChangeset
for help on using the changeset viewer.