summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2023-01-10 17:27:42 +0100
committerPhil Sutter <phil@nwl.cc>2023-01-10 17:47:28 +0100
commit1341394f3840e76f94df5578a808cfb849bd4b8b (patch)
treeb9bff5672042bf934b1ff8fb7c614aaf14842675
parent85e4de22698dd273fe2b75902f2e006aa90c6f35 (diff)
Makefile: Replace brace expansion
According to bash(1), it is not supported by "historical versions of sh". Dash seems to be such a historical version. Reported-by: Pablo Neira Ayuso <pablo@netfilter.org> Fixes: 3822a992bc277 ("Makefile: Fix for 'make distcheck'") Signed-off-by: Phil Sutter <phil@nwl.cc>
-rw-r--r--extensions/GNUmakefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/extensions/GNUmakefile.in b/extensions/GNUmakefile.in
index c37e4619..e289adf0 100644
--- a/extensions/GNUmakefile.in
+++ b/extensions/GNUmakefile.in
@@ -106,7 +106,8 @@ uninstall:
}
clean:
- rm -f *.o *.oo *.so *.a {matches,targets}.man initext.c initext4.c initext6.c initextb.c initexta.c;
+ rm -f *.o *.oo *.so *.a matches.man targets.man
+ rm -f initext.c initext4.c initext6.c initextb.c initexta.c
rm -f .*.d .*.dd;
distclean: clean
@@ -243,7 +244,7 @@ distdir:
mkdir -p $(distdir)
cp -p ${dist_sources} $(distdir)/
cp -p $(wildcard ${srcdir}/lib*.man) $(distdir)/
- cp -p $(srcdir)/*.{t,txlate} $(distdir)/
+ cp -p $(wildcard ${srcdir}/*.t ${srcdir}/*.txlate) $(distdir)/
dvi:
check: all