]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/autoconf/autoconf-2.59/autoreconf-gnuconfigize.patch
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / autoconf / autoconf-2.59 / autoreconf-gnuconfigize.patch
1
2 #
3 # Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
4 #
5
6 --- autoconf-2.59/bin/autoreconf.in~autoreconf-gnuconfigize     2004-05-14 19:04:35.000000000 -0500
7 +++ autoconf-2.59/bin/autoreconf.in     2004-05-14 19:07:34.000000000 -0500
8 @@ -58,7 +58,7 @@
9  $help = "Usage: $0 [OPTION] ... [CONFIGURE-AC or DIRECTORY] ...
10  
11  Run `autoconf' (and `autoheader', `aclocal', `automake', `autopoint'
12 -(formerly `gettextize'), and `libtoolize' where appropriate)
13 +(formerly `gettextize'), `libtoolize', and `gnu-configize' where appropriate)
14  repeatedly to remake the GNU Build System files in the DIRECTORIES or
15  the directory trees driven by CONFIGURE-AC (defaulting to `.').
16  
17 @@ -105,12 +105,13 @@
18  ";
19  
20  # Lib files.
21 -my $autoconf   = $ENV{'AUTOCONF'}   || '@bindir@/@autoconf-name@';
22 -my $autoheader = $ENV{'AUTOHEADER'} || '@bindir@/@autoheader-name@';
23 -my $automake   = $ENV{'AUTOMAKE'}   || 'automake';
24 -my $aclocal    = $ENV{'ACLOCAL'}    || 'aclocal';
25 -my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize';
26 -my $autopoint  = $ENV{'AUTOPOINT'}  || 'autopoint';
27 +my $autoconf      = $ENV{'AUTOCONF'}     || '@bindir@/@autoconf-name@';
28 +my $autoheader    = $ENV{'AUTOHEADER'}   || '@bindir@/@autoheader-name@';
29 +my $automake      = $ENV{'AUTOMAKE'}     || 'automake';
30 +my $aclocal       = $ENV{'ACLOCAL'}      || 'aclocal';
31 +my $libtoolize    = $ENV{'LIBTOOLIZE'}   || 'libtoolize';
32 +my $autopoint     = $ENV{'AUTOPOINT'}    || 'autopoint';
33 +my $gnuconfigize  = $ENV{'GNUCONFIGIZE'} || 'gnu-configize';
34  
35  # --install -- as --add-missing in other tools.
36  my $install = 0;
37 @@ -617,6 +618,10 @@
38        }
39      }
40  
41 +  @ex = grep (/^gnu-configize$/, @exclude);
42 +  if ($#ex == -1) {
43 +    xsystem ("$gnuconfigize");
44 +  }
45  
46    # -------------- #
47    # Running make.  #