Changeset 4866 for toilet/trunk
- Timestamp:
- Jun 17, 2013, 3:09:07 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
toilet/trunk/bootstrap
r4350 r4866 3 3 # bootstrap: generic bootstrap/autogen.sh script for autotools projects 4 4 # 5 # Copyright (c) 2002-20 09Sam Hocevar <sam@hocevar.net>5 # Copyright (c) 2002-2010 Sam Hocevar <sam@hocevar.net> 6 6 # 7 7 # This program is free software. It comes without any warranty, to … … 9 9 # and/or modify it under the terms of the Do What The Fuck You Want 10 10 # To Public License, Version 2, as published by Sam Hocevar. See 11 # http:// sam.zoy.org/wtfpl/COPYINGfor more details.11 # http://www.wtfpl.net/ for more details. 12 12 # 13 13 # The latest version of this script can be found at the following place: 14 # http://caca.zoy.org/wiki/build14 # http://caca.zoy.org/wiki/build 15 15 16 16 # Die if an error occurs … … 37 37 # Check for automake 38 38 amvers="no" 39 for v in 1 1 10 9 8 7 6 5; do39 for v in 13 12 11 10 9 8 7 6 5; do 40 40 if automake-1.${v} --version >/dev/null 2>&1; then 41 41 amvers="-1.${v}" … … 110 110 mkdir "$auxdir" 111 111 fi 112 aclocalflags=" ${aclocalflags} -I $auxdir -I ."112 aclocalflags="-I $auxdir -I . ${aclocalflags}" 113 113 fi 114 115 # Honour M4PATH because sometimes M4 doesn't 116 save_IFS=$IFS 117 IFS=: 118 tmp="$M4PATH" 119 for x in $tmp; do 120 if test -n "$x"; then 121 aclocalflags="-I $x ${aclocalflags}" 122 fi 123 done 124 IFS=$save_IFS 114 125 115 126 # Explain what we are doing from now
Note: See TracChangeset
for help on using the changeset viewer.