]> git.pld-linux.org Git - packages/automake.git/blame - automake-abi.patch
- fix in regexp.m4 (causes failing rebuild for examaple on gide)
[packages/automake.git] / automake-abi.patch
CommitLineData
21f5cea4
PG
1--- ./m4/depout.m4.org Mon May 14 02:01:09 2001
2+++ ./m4/depout.m4 Mon Apr 22 18:37:18 2002
3@@ -12,8 +12,8 @@
4 test x"$AMDEP_TRUE" != x"" ||
5 for mf in $CONFIG_FILES; do
6 case "$mf" in
7- Makefile) dirpart=.;;
8- */Makefile) dirpart=`echo "$mf" | sed -e 's|/[^/]*$||'`;;
9+ Makefile|GNUmakefile) dirpart=.;;
10+ */Makefile|*/GNUmakefile) dirpart=`echo "$mf" | sed -e 's|/[^/]*$||'`;;
11 *) continue;;
12 esac
13 grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue
14--- ./automake.in.org Thu Aug 23 07:26:53 2001
15+++ ./automake.in Mon Apr 22 18:36:10 2002
16@@ -1940,7 +1940,9 @@
17 }
18
19 # Let the language do some special magic if required.
20- $lang->target_hook ($aggregate, $object, $full);
21+ if (defined $lang) {
22+ $lang->target_hook ($aggregate, $object, $full);
23+ }
24
25 if ($derived_source)
26 {
This page took 0.024291 seconds and 4 git commands to generate.