Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 May 2006 12:13:46 +0900
From:      Kaho Toshikazu <kaho@ed.niigata-u.ac.jp>
To:        openoffice@FreeBSD.org
Subject:   openoffice.org-2.0-devel/Makefile 1.250
Message-ID:  <200605300313.k4U3Dk9r083777@pf2.ed.niigata-u.ac.jp>

next in thread | raw e-mail | index | archive | help
  Hi, I am a FreeBSD-current user, and thanks for your great jobs.

  I checked the changes of ports tree recently, and found
the XXX comments in the Makefile. 

+# XXX Cut & paste from bsd.port.mk.
+UNAME?=	/usr/bin/uname
+.if !defined(ARCH)
+ARCH!=  ${UNAME} -p
+.endif
+
+.if ${ARCH} == amd64
+BROKEN=	"Work in progress"
+.endif

 The make command of the base system automatically sets $MACHINE
and $MACHINE_ARCH variables. When we would check arch, we should do
like this.

.if ${MACHINE_ARCH} == amd64
BROKEN=	"Work in progress"
.endif

-- 
kaho@ed.niigata-u.ac.jp



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200605300313.k4U3Dk9r083777>