Touch .deps files on ./configure.

This also makes it compatible with OpenBSD make.
This commit is contained in:
Jonathan Schleifer 2008-11-01 19:55:32 +01:00
parent ac21cd813a
commit b78b068ce2
2 changed files with 8 additions and 1 deletions

View file

@ -132,3 +132,10 @@ AC_DEFUN([BUILDSYS_SHARED_LIB], [
AC_SUBST(UNINSTALL_LIB)
AC_SUBST(CLEAN_LIB)
])
AC_DEFUN([BUILDSYS_TOUCH_DEPS], [
$as_echo "$as_me: Touching .deps files"
for i in $(find . -name Makefile); do
touch $(dirname $i)/.deps
done
])