mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-19 04:49:42 +02:00
[tools] automake: make relocatable by searching resources relative to STAGING_DIR
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29820 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2ea3aaed73
commit
5dcf97eaed
35
tools/automake/patches/000-relocatable.patch
Normal file
35
tools/automake/patches/000-relocatable.patch
Normal file
@ -0,0 +1,35 @@
|
||||
--- a/aclocal.in
|
||||
+++ b/aclocal.in
|
||||
@@ -28,7 +28,8 @@ eval 'case $# in 0) exec @PERL@ -S "$0";
|
||||
|
||||
BEGIN
|
||||
{
|
||||
- my $perllibdir = $ENV{'perllibdir'} || '@datadir@/@PACKAGE@-@APIVERSION@';
|
||||
+ my $perllibdir = $ENV{'perllibdir'} ||
|
||||
+ ($ENV{'STAGING_DIR'} ? $ENV{'STAGING_DIR'} . '/../host/share/@PACKAGE@-@APIVERSION@' : '@datadir@/@PACKAGE@-@APIVERSION@');
|
||||
unshift @INC, (split '@PATH_SEPARATOR@', $perllibdir);
|
||||
}
|
||||
|
||||
--- a/automake.in
|
||||
+++ b/automake.in
|
||||
@@ -31,7 +31,8 @@ package Language;
|
||||
|
||||
BEGIN
|
||||
{
|
||||
- my $perllibdir = $ENV{'perllibdir'} || '@datadir@/@PACKAGE@-@APIVERSION@';
|
||||
+ my $perllibdir = $ENV{'perllibdir'} ||
|
||||
+ ($ENV{'STAGING_DIR'} ? $ENV{'STAGING_DIR'} . '/../host/share/@PACKAGE@-@APIVERSION@' : '@datadir@/@PACKAGE@-@APIVERSION@');
|
||||
unshift @INC, (split '@PATH_SEPARATOR@', $perllibdir);
|
||||
|
||||
# Override SHELL. This is required on DJGPP so that system() uses
|
||||
--- a/lib/Automake/Config.in
|
||||
+++ b/lib/Automake/Config.in
|
||||
@@ -28,7 +28,7 @@ our @EXPORT = qw ($APIVERSION $PACKAGE $
|
||||
our $APIVERSION = '@APIVERSION@';
|
||||
our $PACKAGE = '@PACKAGE@';
|
||||
our $VERSION = '@VERSION@';
|
||||
-our $libdir = '@datadir@/@PACKAGE@-@APIVERSION@';
|
||||
+our $libdir = $ENV{'STAGING_DIR'} ? $ENV{'STAGING_DIR'} . '/../host/share/@PACKAGE@-@APIVERSION@' : '@datadir@/@PACKAGE@-@APIVERSION@';
|
||||
our $perl_threads = @PERL_THREADS@;
|
||||
|
||||
1;;
|
Loading…
Reference in New Issue
Block a user