* Makefile.in (autoconf-common autoheader-common): Only run
autoheader on subdirs with a file config.in.
This commit is contained in:
parent
edc5d9ec58
commit
570ee7f0b6
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
2006-12-20 Hans-Peter Nilsson <hp@axis.com>
|
2006-12-20 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
|
* Makefile.in (autoconf-common autoheader-common): Only run
|
||||||
|
autoheader on subdirs with a file config.in.
|
||||||
|
|
||||||
* configure.ac (common): Make the default "yes" for all targets
|
* configure.ac (common): Make the default "yes" for all targets
|
||||||
with sim subdirs.
|
with sim subdirs.
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
|
|
@ -216,7 +216,7 @@ autoconf-common autoheader-common:
|
||||||
then \
|
then \
|
||||||
echo "Running autoconf in $$d ..." ; \
|
echo "Running autoconf in $$d ..." ; \
|
||||||
(cd $$d && autoconf --force) ; \
|
(cd $$d && autoconf --force) ; \
|
||||||
if [ $@ = autoheader-common ] ; \
|
if [ $@ = autoheader-common ] && [ -f $$d/config.in ] ; \
|
||||||
then \
|
then \
|
||||||
echo "Running autoheader in $$d ..." ; \
|
echo "Running autoheader in $$d ..." ; \
|
||||||
(cd $$d && autoheader --force) ; \
|
(cd $$d && autoheader --force) ; \
|
||||||
|
|
Loading…
Reference in a new issue