[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
tiny patch to make automake find Automake/Struct.pm
From: |
Jim Meyering |
Subject: |
tiny patch to make automake find Automake/Struct.pm |
Date: |
30 Apr 2001 09:45:23 +0200 |
User-agent: |
Gnus/5.090003 (Oort Gnus v0.03) Emacs/21.0.103 |
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 <address@hidden>
* 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";
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- tiny patch to make automake find Automake/Struct.pm,
Jim Meyering <=