diff options
author | hubertf <hubertf> | 2001-07-26 16:13:52 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2001-07-26 16:13:52 +0000 |
commit | 58e10cda89811c65a27d76e80656160668087755 (patch) | |
tree | c05abbc4f8a5b47a0ff20e19ec269f8954c1bdc4 /mk/bsd.prefs.mk | |
parent | d46543985a09a27fe9ccff888fb003819b08994a (diff) | |
download | pkgsrc-58e10cda89811c65a27d76e80656160668087755.tar.gz |
ZOULARISBASE: If there's no $LOCALBASE/bsd, try $LOCALBASE
Diffstat (limited to 'mk/bsd.prefs.mk')
-rw-r--r-- | mk/bsd.prefs.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mk/bsd.prefs.mk b/mk/bsd.prefs.mk index 682a06e90ac..18dddc23091 100644 --- a/mk/bsd.prefs.mk +++ b/mk/bsd.prefs.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.prefs.mk,v 1.55 2001/07/26 08:33:02 hubertf Exp $ +# $NetBSD: bsd.prefs.mk,v 1.56 2001/07/26 16:13:52 hubertf Exp $ # # Make file, included to get the site preferences, if any. Should # only be included by package Makefiles before any .if defined() @@ -288,7 +288,11 @@ PKG_TOOLS_BIN?= /usr/sbin # end of migration aid LOCALBASE?= ${DESTDIR}/usr/pkg .if !defined(ZOULARISBASE) +. if exists(${LOCALBASE}/bsd) ZOULARISBASE:= ${LOCALBASE}/bsd +. else +ZOULARISBASE:= ${LOCALBASE} +. endif .endif PKG_TOOLS_BIN?= ${ZOULARISBASE}/bin |