This is the mail archive of the automake@gnu.org mailing list for the automake project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

tiny patch to make automake find Automake/Struct.pm


The following patch is required to cause automake to find
Automake/Struct.pm (which for me is installed here):

  /p/p/automake-2001-04-30.09h34/share/automake/Automake/Struct.pm

the current automake would find it if it were here:

  /p/p/automake-2001-04-30.09h34/share/automake/lib/Automake/Struct.pm

but automake doesn't even create a $(prefix)/share/automake/lib/ directory.

--------------
2001-04-30  Jim Meyering  <meyering@lucent.com>

	* automake.in: Remove `/lib' from include directory.


Index: automake.in
===================================================================
RCS file: /cvs/automake/automake/automake.in,v
retrieving revision 1.1061
diff -u -p -r1.1061 automake.in
--- automake.in	2001/04/27 14:49:47	1.1061
+++ automake.in	2001/04/30 07:39:56
@@ -32,7 +32,7 @@ package Language;
 BEGIN
 {
   my $prefix = "@prefix@";
-  my $perllibdir = $ENV{'perllibdir'} || "@datadir@/@PACKAGE@/lib";
+  my $perllibdir = $ENV{'perllibdir'} || "@datadir@/@PACKAGE@";
   unshift @INC, "$perllibdir";
 }
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]