User: stephent
Date: 06/06/29 16:52:01
Modified: xemacs ChangeLog configure.ac
Log:
Maybe create $srcdir/src/depend.
Revision Changes Path
1.507 +5 -0 XEmacs/xemacs/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/ChangeLog,v
retrieving revision 1.506
retrieving revision 1.507
diff -u -p -r1.506 -r1.507
--- ChangeLog 2006/06/06 00:18:28 1.506
+++ ChangeLog 2006/06/29 14:51:59 1.507
@@ -1,3 +1,8 @@
+2006-06-23 Stephen J. Turnbull <stephen(a)xemacs.org>
+
+ * configure.ac (Build Makefile.in's from Makefile.in.in's):
+ Create $srcdir/src/depend if it's missing.
+
2006-06-05 Jerry James <james(a)xemacs.org>
* configure.ac: Change "if -z" to "if test -z".
1.44 +8 -0 XEmacs/xemacs/configure.ac
Index: configure.ac
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/configure.ac,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -p -r1.43 -r1.44
--- configure.ac 2006/06/06 00:18:29 1.43
+++ configure.ac 2006/06/29 14:52:00 1.44
@@ -6218,6 +6218,14 @@ dnl src/Makefile.in will have src/depend
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" ;;
Show replies by date