# HG changeset patch # User stephent # Date 1151592720 0 # Node ID 71532ccbd8e388b04fa0c468d63d8f58d53145ae # Parent 49226be71b8981697156d253d18004cf03c2104c [xemacs-hg @ 2006-06-29 14:51:59 by stephent] Maybe create $srcdir/src/depend. diff -r 49226be71b89 -r 71532ccbd8e3 ChangeLog --- a/ChangeLog Wed Jun 28 21:51:22 2006 +0000 +++ b/ChangeLog Thu Jun 29 14:52:00 2006 +0000 @@ -1,3 +1,8 @@ +2006-06-23 Stephen J. Turnbull + + * configure.ac (Build Makefile.in's from Makefile.in.in's): + Create $srcdir/src/depend if it's missing. + 2006-06-05 Jerry James * configure.ac: Change "if -z" to "if test -z". diff -r 49226be71b89 -r 71532ccbd8e3 configure.ac --- a/configure.ac Wed Jun 28 21:51:22 2006 +0000 +++ b/configure.ac Thu Jun 29 14:52:00 2006 +0000 @@ -6218,6 +6218,14 @@ dnl module Makefiles will have the common text in dnl modules/common/Makefile.common appended. +dnl this actually should be conditional on having perl (ie, effectively +dnl unconditional on sane systems) +if test -r $srcdir/src/depend; then :; +else + echo "creating $srcdir/src/depend" + perl $srcdir/src/make-src-depend > $srcdir/src/depend +fi + for file in $internal_makefile_list; do case $file in src/Makefile.in ) file="src/Makefile.in:src/Makefile.in.in:src/depend" ;;