Differences From Artifact [d8561c1b95]:
- Executable file autogen.sh — part of check-in [8d5b3e826a] at 2016-12-12 22:28:45 on branch trunk — Added hardening and debugging flags (user: rkeene, size: 1546) [annotate] [blame] [check-ins using] [more...]
To Artifact [6c19085661]:
- Executable file autogen.sh — part of check-in [953de83652] at 2016-12-13 18:25:24 on branch trunk — Updated to return an error if automake fails (user: rkeene, size: 1644) [annotate] [blame] [check-ins using] [more...]
︙ | |||
65 66 67 68 69 70 71 72 73 74 75 | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | + + + + | if diff aclocal.m4.new aclocal.m4 >/dev/null 2>/dev/null; then rm -f aclocal.m4.new else mv aclocal.m4.new aclocal.m4 fi automake --add-missing --copy --force-missing >/dev/null 2>/dev/null if ! [ -f install-sh -o -f install.sh -o -f shtool ]; then echo "automake failed" >&2 exit 1 fi autoconf rm -rf autom4te.cache |