Magellan Linux

Annotation of /trunk/automake/patches/automake-1.5-target_hook.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 144 - (hide annotations) (download)
Tue May 8 20:06:05 2007 UTC (17 years, 1 month ago) by niro
File size: 1132 byte(s)
-import

1 niro 144 diff -C 2 -r -N /tmp/automake-1.5/automake.in automake-1.5/automake.in
2     *** /tmp/automake-1.5/automake.in Thu Aug 23 07:26:53 2001
3     --- automake-1.5/automake.in Tue Feb 5 20:38:55 2002
4     ***************
5     *** 1941,1945 ****
6    
7     # Let the language do some special magic if required.
8     ! $lang->target_hook ($aggregate, $object, $full);
9    
10     if ($derived_source)
11     --- 1941,1947 ----
12    
13     # Let the language do some special magic if required.
14     ! if (defined $lang) {
15     ! $lang->target_hook ($aggregate, $object, $full);
16     ! }
17    
18     if ($derived_source)
19     diff -C 2 -r -N /tmp/automake-1.5/m4/depout.m4 automake-1.5/m4/depout.m4
20     *** /tmp/automake-1.5/m4/depout.m4 Mon May 14 02:01:09 2001
21     --- automake-1.5/m4/depout.m4 Wed Jan 30 22:03:33 2002
22     ***************
23     *** 13,18 ****
24     for mf in $CONFIG_FILES; do
25     case "$mf" in
26     ! Makefile) dirpart=.;;
27     ! */Makefile) dirpart=`echo "$mf" | sed -e 's|/[^/]*$||'`;;
28     *) continue;;
29     esac
30     --- 13,18 ----
31     for mf in $CONFIG_FILES; do
32     case "$mf" in
33     ! Makefile|GNUmakefile) dirpart=.;;
34     ! */Makefile|*/GNUmakefile) dirpart=`echo "$mf" | sed -e 's|/[^/]*$||'`;;
35     *) continue;;
36     esac