diff options
author | woglinde <henning@familie-heinold.de> | 2012-12-07 14:41:39 -0800 |
---|---|---|
committer | woglinde <henning@familie-heinold.de> | 2012-12-07 14:41:39 -0800 |
commit | 716bae8a8b070b88fa91c30e03fc09e70310091a (patch) | |
tree | a21977f6e2803701922fd8dac72ac924b64a995b /recipes-core/classpath/classpath-0.99 | |
parent | b1fd6ea3f30cc6fc24773b63a4adb3259b28903f (diff) | |
parent | 5aae7eb70b2ca58679f9e89e878b7efff5eb3d24 (diff) | |
download | meta-java-716bae8a8b070b88fa91c30e03fc09e70310091a.tar.gz |
Merge pull request #32 from kraj/master
Forward port dbus-java recipes and some more openjdk-7 fixes
Diffstat (limited to 'recipes-core/classpath/classpath-0.99')
-rw-r--r-- | recipes-core/classpath/classpath-0.99/use_libdir.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes-core/classpath/classpath-0.99/use_libdir.patch b/recipes-core/classpath/classpath-0.99/use_libdir.patch new file mode 100644 index 0000000..3b4df90 --- /dev/null +++ b/recipes-core/classpath/classpath-0.99/use_libdir.patch | |||
@@ -0,0 +1,19 @@ | |||
1 | on some arches we use lib64 for libdir so hardcoding to lib | ||
2 | is not gonna work always | ||
3 | |||
4 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
5 | |||
6 | Index: classpath-0.99/resource/Makefile.am | ||
7 | =================================================================== | ||
8 | --- classpath-0.99.orig/resource/Makefile.am 2006-01-12 12:15:43.000000000 -0800 | ||
9 | +++ classpath-0.99/resource/Makefile.am 2012-11-21 14:28:02.433005139 -0800 | ||
10 | @@ -1,7 +1,7 @@ | ||
11 | ## used by automake to generate Makefile.in | ||
12 | |||
13 | logging_DATA = java/util/logging/logging.properties | ||
14 | -loggingdir = $(prefix)/lib | ||
15 | +loggingdir = $(libdir) | ||
16 | |||
17 | security_DATA = java/security/classpath.security | ||
18 | -securitydir = $(prefix)/lib/security | ||
19 | +securitydir = $(libdir)/security | ||