diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-01-20 15:19:22 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-01-20 15:19:22 +0000 |
commit | 122069cabaca3992da6cb97afd91a291970c00b8 (patch) | |
tree | 36dea1ce43a6f7ed52e6d83d46c3039a8f82cc75 /tools/automake/patches/000-relocatable.patch | |
parent | fccdc995da93d2bcfe5683dd24e2abdf171007ba (diff) | |
download | upstream-122069cabaca3992da6cb97afd91a291970c00b8.tar.gz upstream-122069cabaca3992da6cb97afd91a291970c00b8.tar.bz2 upstream-122069cabaca3992da6cb97afd91a291970c00b8.zip |
automake: further relocation fixes
SVN-Revision: 29828
Diffstat (limited to 'tools/automake/patches/000-relocatable.patch')
-rw-r--r-- | tools/automake/patches/000-relocatable.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/automake/patches/000-relocatable.patch b/tools/automake/patches/000-relocatable.patch index 36a56c00fe..3255b97518 100644 --- a/tools/automake/patches/000-relocatable.patch +++ b/tools/automake/patches/000-relocatable.patch @@ -10,6 +10,17 @@ unshift @INC, (split '@PATH_SEPARATOR@', $perllibdir); } +@@ -57,8 +58,8 @@ $perl_threads = 0; + # @system_includes can be augmented with the `dirlist' file. Also + # --acdir will reset both @automake_includes and @system_includes. + my @user_includes = (); +-my @automake_includes = ("@datadir@/aclocal-$APIVERSION"); +-my @system_includes = ('@datadir@/aclocal'); ++my @automake_includes = ($ENV{'STAGING_DIR'} ? $ENV{'STAGING_DIR'} . "/../host/share/aclocal-$APIVERSION" : "@datadir@/aclocal-$APIVERSION"); ++my @system_includes = ($ENV{'STAGING_DIR'} ? $ENV{'STAGING_DIR'} . '/../host/share/aclocal' : '@datadir@/aclocal'); + + # Whether we should copy M4 file in $user_includes[0]. + my $install = 0; --- a/automake.in +++ b/automake.in @@ -31,7 +31,8 @@ package Language; |