Differences From Artifact [c540dfc874]:
- Executable file
autogen.sh
— part of check-in
[4688f0e933]
at
2010-05-20 18:30:05
on branch trunk
— Updated to use MAKE environment variable as make command, if present
Updated to autogen cackey (user: rkeene, size: 100) [annotate] [blame] [check-ins using]
To Artifact [daf2ac0fe1]:
- Executable file autogen.sh — part of check-in [2086fbe318] at 2012-07-30 05:07:01 on branch trunk — Moved copying in of automake/autoconf files to autogen from build (user: rkeene, size: 325) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | + + + + + + + + + + + + | #! /bin/sh rm -f aclocal.m4 ${MAKE:-make} -C aclocal autoconf; autoheader rm -rf autom4te.cache/ for basefile in install-sh config.sub config.guess; do for path in /usr/share/automake-*; do file="${path}/${basefile}" if [ -f "${file}" ]; then cp "${file}" . chmod 755 "./${basefile}" break fi done done |