summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2017-02-01 23:49:56 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2017-02-01 23:51:56 -0500
commite1aba20488181b0553f1eb7f20b02736a992bf6f (patch)
tree2099917c08f152fa1402b3cb5fbae42db21dbac7 /configure.ac
parent2cdd7acfc2df072b80d319490fbff8bb583d311e (diff)
Add a GNUmakefile to apply the MAKEFLAGS we want.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index eda0e1019d..0d51b8363b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1604,8 +1604,7 @@ AC_CONFIG_FILES([
AC_OUTPUT([], [], [
if test "$srcdir" != .; then
{
- find "$srcdir" -name Makefile -printf '%P\n'
- find "$srcdir" -name subdir.mk -printf '%P\n'
+ find "$srcdir" '(' -name GNUmakefile -o -name Makefile -o -name subdir.mk ')' -printf '%P\n'
} | while read -r filename; do
mkdir -p "\$(dirname "\$filename")"
ln -srfT "$srcdir/\$filename" "\$filename"