diff options
author | tv <tv@pkgsrc.org> | 1998-05-23 15:42:58 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1998-05-23 15:42:58 +0000 |
commit | 92d05560674d09484aec14cd80a5bfa055982ac1 (patch) | |
tree | 39d067c589646253ef5fea9286fb74f110e07fa1 /mk | |
parent | b8f79875d07a97a5e97a751becac6abf07bc8ab2 (diff) | |
download | pkgsrc-92d05560674d09484aec14cd80a5bfa055982ac1.tar.gz |
Fix --host= rule to use a three part architecture, and fix GNU pkgs to use
the new automatic --host= setting. Now all GNU pkgs should work on all
archs (including arm32), except emacs/xemacs, which I'll fix soon.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 5ee57a56eeb..c4ec623d1e2 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,7 +1,7 @@ #-*- mode: Fundamental; tab-width: 4; -*- # ex:ts=4 # -# $NetBSD: bsd.pkg.mk,v 1.84 1998/05/22 17:35:42 tv Exp $ +# $NetBSD: bsd.pkg.mk,v 1.85 1998/05/23 15:42:59 tv Exp $ # # This file is derived from bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. @@ -819,7 +819,7 @@ CONFIGURE_SCRIPT?= configure CONFIGURE_ENV+= PATH=${PATH}:${LOCALBASE}/bin:${X11BASE}/bin .if defined(GNU_CONFIGURE) -CONFIGURE_ARGS+= --host=${MACHINE_GNU_ARCH}-netbsd --prefix=${PREFIX} +CONFIGURE_ARGS+= --host=${MACHINE_GNU_ARCH}--netbsd --prefix=${PREFIX} HAS_CONFIGURE= yes .endif |