Skip to content
Snippets Groups Projects
Commit 1deee5a4 authored by Claus-Justus Heine's avatar Claus-Justus Heine
Browse files

Don't use the $(wildcard ...) GNU extension

parent 2e77c2aa
Branches
Tags
No related merge requests found
......@@ -44,7 +44,11 @@ AC_CONFIG_COMMANDS([demo],
fi])
# Collect the demo programs
DEMOSOURCES=`find ${srcdir}/demo/src -name "*.\[ch\]"`
DEMOSOURCES=
for f in `find ${srcdir}/demo/src -name '*.[[ch]]'|sed -e "s|${srcdir}/||g"`
do
DEMOSOURCES="${DEMOSOURCES} ${f}"
done
AC_SUBST(DEMOSOURCES)
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment