Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Dec 2001 14:31:58 -0800 (PST)
From:      "David O'Brien" <obrien@NUXI.com>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/32445: CONFIGURE_TARGET default setting is bogus
Message-ID:  <200112022231.fB2MVwv79249@dragon.nuxi.com>

next in thread | raw e-mail | index | archive | help

>Number:         32445
>Category:       ports
>Synopsis:       CONFIGURE_TARGET default setting is bogus
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun Dec 02 14:40:00 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     David O'Brien
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
>Environment:
System: FreeBSD dragon.nuxi.com 5.0-CURRENT FreeBSD 5.0-CURRENT #220: Thu Nov 29 09:09:59 PST 2001 rootk@dragon.nuxi.com:/FBSD/src/sys/i386/compile/DRAGON i386


	
>Description:

	CONFIGURE_TARGET?= ${MACHINE_ARCH}--freebsd${OSREL}
	is not a proper GNU 3-tupple.  Autoconf 2.5x built configure scripts
	are now bitching
	"configure: WARNING: you should use --build, --host, --target" due to it.

>How-To-Repeat:
	
>Fix:

	"unknown" is the canonical "vendor" value.
	But I prefer "portbld" as knowning that has helped me in the past
	when epople send me bug reports,etc.

Index: bsd.port.mk
===================================================================
RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v
retrieving revision 1.394
diff -u -r1.394 bsd.port.mk
--- bsd.port.mk	28 Nov 2001 05:00:36 -0000	1.394
+++ bsd.port.mk	2 Dec 2001 22:23:41 -0000
@@ -426,7 +426,7 @@
 #				  (default: "Makefile.PL" if PERL_CONFIGURE is set,
 #				  "configure" otherwise).
 # CONFIGURE_TARGET - The name of target to call when GNU_CONFIGURE is
-#				  defined (default: ${MACHINE_ARCH}--freebsd${OSREL}).
+#				  defined (default: ${MACHINE_ARCH}-portbld-freebsd${OSREL}).
 # CONFIGURE_ARGS - Pass these args to configure if ${HAS_CONFIGURE} is set
 #				  (default: "--prefix=${PREFIX} ${CONFIGURE_TARGET}" if
 #				  GNU_CONFIGURE is set, "CC=${CC} CCFLAGS=${CFLAGS}
@@ -1382,7 +1382,7 @@
 .endif
 
 CONFIGURE_SCRIPT?=	configure
-CONFIGURE_TARGET?=	${MACHINE_ARCH}--freebsd${OSREL}
+CONFIGURE_TARGET?=	${MACHINE_ARCH}-portbld-freebsd${OSREL}
 CONFIGURE_LOG?=		config.log
 
 .if defined(GNU_CONFIGURE)
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




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