diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2015-07-05 00:41:37 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2015-07-05 00:41:37 +0000 |
commit | d5b14ed39b905a592ce6b5993147dfb01a02c6e0 (patch) | |
tree | e550d80d6ae611e9733d02d8c13388f04fec0afb /java/openjdk8/files/patch-langtools-test-Makefile | |
parent | Update to 3.5.0.32 (diff) |
. Fix BSD detection in the langtools test infrastructure.
Notes
Notes:
svn path=/head/; revision=391339
Diffstat (limited to 'java/openjdk8/files/patch-langtools-test-Makefile')
-rw-r--r-- | java/openjdk8/files/patch-langtools-test-Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/java/openjdk8/files/patch-langtools-test-Makefile b/java/openjdk8/files/patch-langtools-test-Makefile new file mode 100644 index 000000000000..85cd3ca71f95 --- /dev/null +++ b/java/openjdk8/files/patch-langtools-test-Makefile @@ -0,0 +1,11 @@ +--- langtools/test/Makefile Tue May 05 18:06:51 2015 -0700 ++++ langtools/test/Makefile Sat Jul 04 15:31:54 2015 -0700 +@@ -36,7 +36,7 @@ + ARCH=i586 + endif + endif +-ifneq ($(findstring $(OSNAME), BSD), ) ++ifneq ($(findstring BSD, $(OSNAME)), ) + PLATFORM = bsd + JT_PLATFORM = linux + ARCH = $(shell uname -p) |