Touch .deps files on ./configure.
This also makes it compatible with OpenBSD make.
This commit is contained in:
parent
ac21cd813a
commit
b78b068ce2
2 changed files with 8 additions and 1 deletions
|
@ -442,4 +442,4 @@ INSTALL_FAILED = printf "\033[K\033[0;31mFailed to install \033[1;31m$$i\033[0;3
|
||||||
DELETE_OK = printf "\033[K\033[0;34mDeleted \033[1;34m$$i\033[0;34m.\033[0m\n"
|
DELETE_OK = printf "\033[K\033[0;34mDeleted \033[1;34m$$i\033[0;34m.\033[0m\n"
|
||||||
DELETE_FAILED = printf "\033[K\033[0;31mFailed to delete \033[1;31m$$i\033[0;31m!\033[0m\n"; exit 1
|
DELETE_FAILED = printf "\033[K\033[0;31mFailed to delete \033[1;31m$$i\033[0;31m!\033[0m\n"; exit 1
|
||||||
|
|
||||||
-include .deps
|
include .deps
|
||||||
|
|
|
@ -132,3 +132,10 @@ AC_DEFUN([BUILDSYS_SHARED_LIB], [
|
||||||
AC_SUBST(UNINSTALL_LIB)
|
AC_SUBST(UNINSTALL_LIB)
|
||||||
AC_SUBST(CLEAN_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
|
||||||
|
])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue