freebsd-ports/java/jdk15/files/patch-control::common::Defs-bsd.gmk
Greg Lewis e10a9be8a7 . Fix build by correctly setting the arch on recent FreeBSD/pc98 versions.
PR:		121288
Submitted by:	NAKAJI Hiroyuki <nakaji@jp.freebsd.org>
2008-04-02 13:55:24 +00:00

20 lines
547 B
Text

--- ../../control/make/common/Defs-bsd.gmk.orig 2008-03-02 03:42:25.000000000 +0900
+++ ../../control/make/common/Defs-bsd.gmk 2008-03-02 10:35:39.000000000 +0900
@@ -114,7 +114,7 @@
archExpr = case "`$(UNAME) -m`" in \
- i[3-9]86) \
+ i[3-9]86|pc98) \
$(ECHO) i586 \
;; \
ia64) \
@@ -204,7 +204,7 @@
ifeq ($(TRUE_PLATFORM), NetBSD)
DEVTOOLS_PATH = /usr/pkg/bin/
else
-DEVTOOLS_PATH = /usr/local/bin/
+DEVTOOLS_PATH = ${LOCALBASE}/bin/
endif
# Allow the user to override the default value...
ifdef ALT_DEVTOOLS_PATH