don't create makefiles for nonexistent utils
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29882 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
564c92d95b
commit
6537ccf8cd
15
configure
vendored
15
configure
vendored
@ -39780,9 +39780,6 @@ fi
|
||||
BAKEFILE_BAKEFILE_M4_VERSION="0.1.4"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
BAKEFILE_AUTOCONF_INC_M4_VERSION="0.1.4"
|
||||
|
||||
|
||||
@ -41552,10 +41549,14 @@ for subdir in `echo $SUBDIRS`; do
|
||||
else if test ${subdir} = "samples"; then
|
||||
makefiles="samples/Makefile.in samples/console/Makefile.in"
|
||||
elif test ${subdir} = "utils"; then
|
||||
makefiles="utils/HelpGen/Makefile.in \
|
||||
utils/HelpGen/src/Makefile.in \
|
||||
utils/tex2rtf/Makefile.in \
|
||||
utils/tex2rtf/src/Makefile.in"
|
||||
makefiles=""
|
||||
for util in HelpGen tex2rtf ; do
|
||||
if test -d $srcdir/utils/$util ; then
|
||||
makefiles="utils/$util/Makefile.in \
|
||||
utils/$util/src/Makefile.in \
|
||||
$makefiles"
|
||||
fi
|
||||
done
|
||||
else makefiles=`(cd $srcdir ; find $subdir -name Makefile.in)`
|
||||
fi
|
||||
fi
|
||||
|
12
configure.in
12
configure.in
@ -6246,10 +6246,14 @@ for subdir in `echo $SUBDIRS`; do
|
||||
if test ${subdir} = "samples"; then
|
||||
makefiles="samples/Makefile.in samples/console/Makefile.in"
|
||||
elif test ${subdir} = "utils"; then
|
||||
makefiles="utils/HelpGen/Makefile.in \
|
||||
utils/HelpGen/src/Makefile.in \
|
||||
utils/tex2rtf/Makefile.in \
|
||||
utils/tex2rtf/src/Makefile.in"
|
||||
makefiles=""
|
||||
for util in HelpGen tex2rtf ; do
|
||||
if test -d $srcdir/utils/$util ; then
|
||||
makefiles="utils/$util/Makefile.in \
|
||||
utils/$util/src/Makefile.in \
|
||||
$makefiles"
|
||||
fi
|
||||
done
|
||||
else dnl assume that everything compiles for tests
|
||||
makefiles=`(cd $srcdir ; find $subdir -name Makefile.in)`
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user