diff options
author | heinz <heinz@pkgsrc.org> | 2004-04-13 22:04:15 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2004-04-13 22:04:15 +0000 |
commit | 2c29b0548dbaa32b6e119571cfeb05c623bd4b5d (patch) | |
tree | 39130d62836cec24a2bd5b6aa530a61459648c3e /mk | |
parent | 871ce6b998274044c8e2e1029da0bc537e39f41d (diff) | |
download | pkgsrc-2c29b0548dbaa32b6e119571cfeb05c623bd4b5d.tar.gz |
Remove redundant assignments of PKG_TOOLS_BIN. PKG_TOOLS_BIN is
${LOCALBASE}/sbin on Linux, Darwin and IRIX.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/defs.Darwin.mk | 6 | ||||
-rw-r--r-- | mk/defs.IRIX.mk | 5 | ||||
-rw-r--r-- | mk/defs.Linux.mk | 6 |
3 files changed, 3 insertions, 14 deletions
diff --git a/mk/defs.Darwin.mk b/mk/defs.Darwin.mk index 6e3cdff584b..32ec7345ca1 100644 --- a/mk/defs.Darwin.mk +++ b/mk/defs.Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Darwin.mk,v 1.69 2004/04/07 14:26:51 tv Exp $ +# $NetBSD: defs.Darwin.mk,v 1.70 2004/04/13 22:04:15 heinz Exp $ # # Variable definitions for the Darwin operating system. @@ -145,7 +145,3 @@ _STRIPFLAG_INSTALL?= -s # install(1) option to strip .endif LOCALBASE?= ${DESTDIR}/usr/pkg -.if exists(${LOCALBASE}/sbin/pkg_info) -PKG_TOOLS_BIN?= ${LOCALBASE}/sbin -.endif -PKG_TOOLS_BIN?= ${LOCALBASE}/bin diff --git a/mk/defs.IRIX.mk b/mk/defs.IRIX.mk index aee72ded48c..b49874605b5 100644 --- a/mk/defs.IRIX.mk +++ b/mk/defs.IRIX.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.IRIX.mk,v 1.45 2004/04/11 17:06:18 jschauma Exp $ +# $NetBSD: defs.IRIX.mk,v 1.46 2004/04/13 22:04:15 heinz Exp $ # # Variable definitions for the IRIX operating system. @@ -161,10 +161,7 @@ _STRIPFLAG_INSTALL?= -s # install(1) option to strip .endif LOCALBASE?= ${DESTDIR}/usr/pkg -.if exists(${LOCALBASE}/sbin/pkg_info) PKG_TOOLS_BIN?= ${LOCALBASE}/sbin -.endif -PKG_TOOLS_BIN?= ${LOCALBASE}/bin CONFIGURE_ENV+= ABI=${ABI} MAKE_ENV+= ABI=${ABI} diff --git a/mk/defs.Linux.mk b/mk/defs.Linux.mk index fb3d6ed5e34..d1a3da1bd21 100644 --- a/mk/defs.Linux.mk +++ b/mk/defs.Linux.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Linux.mk,v 1.67 2004/04/07 14:26:51 tv Exp $ +# $NetBSD: defs.Linux.mk,v 1.68 2004/04/13 22:04:15 heinz Exp $ # # Variable definitions for the Linux operating system. @@ -194,7 +194,3 @@ _STRIPFLAG_INSTALL?= -s # install(1) option to strip .endif LOCALBASE?= ${DESTDIR}/usr/pkg -.if exists(${LOCALBASE}/sbin/pkg_info) -PKG_TOOLS_BIN?= ${LOCALBASE}/sbin -.endif -PKG_TOOLS_BIN?= ${LOCALBASE}/bin |