Overview
Comment: | Fix a bug in buildsys.m4 that would cause some shells to fail. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8d783666c44411fe0f8eea9c2ef0ea12 |
User & Date: | js on 2010-08-10 14:30:28 |
Other Links: | manifest | tags |
Context
2010-08-11
| ||
11:09 | Use tput for colour output, if available. check-in: 2035aa9673 user: js tags: trunk | |
2010-08-10
| ||
14:30 | Fix a bug in buildsys.m4 that would cause some shells to fail. check-in: 8d783666c4 user: js tags: trunk | |
2010-07-30
| ||
01:24 | Adjust configure.ac to recent changes. check-in: 3cc9e58d14 user: js tags: trunk | |
Changes
Modified m4/buildsys.m4 from [0aace4103b] to [c16906862c].
︙ | ︙ | |||
126 127 128 129 130 131 132 | AC_SUBST(PLUGIN_SUFFIX) AC_SUBST(INSTALL_LIB) AC_SUBST(UNINSTALL_LIB) AC_SUBST(CLEAN_LIB) ]) AC_DEFUN([BUILDSYS_TOUCH_DEPS], [ | | | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | AC_SUBST(PLUGIN_SUFFIX) AC_SUBST(INSTALL_LIB) AC_SUBST(UNINSTALL_LIB) AC_SUBST(CLEAN_LIB) ]) AC_DEFUN([BUILDSYS_TOUCH_DEPS], [ ${as_echo:="echo"} ${as_me:="configure"}": touching .deps files" for i in $(find . -name Makefile); do DEPSFILE="$(dirname $i)/.deps" test -f "$DEPSFILE" && rm "$DEPSFILE" touch -t 0001010000 "$DEPSFILE" done ]) |