diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2011-11-12 20:58:34 +0100 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2011-11-26 23:41:44 +0100 |
commit | 57e069cde6617f00ca8834a82c6f360af43d5067 (patch) | |
tree | 48cbe15e96d217c45acfa64b0c13aad8c6424980 /recipes-core/classpathx/gnujaf-1.1.1/datadir_java.patch | |
download | meta-java-57e069cde6617f00ca8834a82c6f360af43d5067.tar.gz |
meta-java: initial commit
* taken over mostly stuff from oe classic
* cleaned up recipes
* added license checksums
* bump icedtea6-native to 1.8.11
* use jamvm from git as native
Diffstat (limited to 'recipes-core/classpathx/gnujaf-1.1.1/datadir_java.patch')
-rw-r--r-- | recipes-core/classpathx/gnujaf-1.1.1/datadir_java.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes-core/classpathx/gnujaf-1.1.1/datadir_java.patch b/recipes-core/classpathx/gnujaf-1.1.1/datadir_java.patch new file mode 100644 index 0000000..807a1cb --- /dev/null +++ b/recipes-core/classpathx/gnujaf-1.1.1/datadir_java.patch | |||
@@ -0,0 +1,23 @@ | |||
1 | Index: activation-1.1.1/Makefile.am | ||
2 | =================================================================== | ||
3 | --- activation-1.1.1.orig/Makefile.am 2008-03-01 10:30:06.000000000 +0100 | ||
4 | +++ activation-1.1.1/Makefile.am 2008-03-01 10:31:04.000000000 +0100 | ||
5 | @@ -7,6 +7,8 @@ | ||
6 | JAVADOC = @JAVADOC@ | ||
7 | JAVADOCFLAGS = @JAVADOCFLAGS@ | ||
8 | |||
9 | +JARDIR = $(datadir)/java | ||
10 | + | ||
11 | src = @srcdir@/source | ||
12 | dst = classes | ||
13 | doc = @srcdir@/docs | ||
14 | @@ -92,7 +94,7 @@ | ||
15 | $(RM) config.log config.status | ||
16 | |||
17 | install-data-local: | ||
18 | - @srcdir@/mkinstalldirs $(DESTDIR)/$(datadir)/java | ||
19 | - $(INSTALL_DATA) $(activation_jar) $(DESTDIR)/$(datadir)/java | ||
20 | + @srcdir@/mkinstalldirs $(DESTDIR)/$(JARDIR) | ||
21 | + $(INSTALL_DATA) $(activation_jar) $(DESTDIR)/$(JARDIR) | ||
22 | |||
23 | # End of Makefile.am | ||