diff options
author | jlam <jlam@pkgsrc.org> | 2004-10-07 02:01:37 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-10-07 02:01:37 +0000 |
commit | 17c3aafac1aa4cacaba3e9998eacf16787dfefb4 (patch) | |
tree | 15912261de9f656cabfa82bfc7708e5e4ee1ae67 /mk/platform | |
parent | d2eb44c14d837a993265620b7872506e7223a34f (diff) | |
download | pkgsrc-17c3aafac1aa4cacaba3e9998eacf16787dfefb4.tar.gz |
* Make PKGSRC_TOPDIR a private variable by renaming it to _PKGSRC_TOPDIR,
as it's only used internally by bsd.prefs.mk.
* Make _PKGSRCDIR a public variable by renaming it to PKGSRCDIR.
Also, generate its value from ${_PKGSRC_TOPDIR} so it's less fragile
than the old method of stripping off the last two components of
${.CURDIR}. PKGSRCDIR may now be used after bsd.prefs.mk is defined.
* Change all references to _PKGSRCDIR to PKGSRCDIR.
Diffstat (limited to 'mk/platform')
-rw-r--r-- | mk/platform/SunOS.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/platform/SunOS.mk b/mk/platform/SunOS.mk index 7ec8b9b22cb..b88dcf1f2a5 100644 --- a/mk/platform/SunOS.mk +++ b/mk/platform/SunOS.mk @@ -1,4 +1,4 @@ -# $NetBSD: SunOS.mk,v 1.1 2004/10/06 20:51:47 jlam Exp $ +# $NetBSD: SunOS.mk,v 1.2 2004/10/07 02:01:39 jlam Exp $ # # Variable definitions for the SunOS/Solaris operating system. @@ -170,7 +170,7 @@ _STRIPFLAG_INSTALL?= -s # install(1) option to strip @echo "ERROR: pkgsrc now requires a more functional sed(1) than Solaris provides." @echo "you can satisfy this requirement by running:" @echo "" - @echo " cd ${_PKGSRCDIR}/textproc/nbsed; ${MAKE} install" + @echo " cd ${PKGSRCDIR}/textproc/nbsed; ${MAKE} install" @echo "" @echo "this will install ${LOCALBASE}/bin/nbsed and eliminate this message." @echo "(nbsed is already installed by recent bootstrap-pkgsrc)." |