diff options
author | grant <grant@pkgsrc.org> | 2003-07-02 05:56:03 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-07-02 05:56:03 +0000 |
commit | bdd165f13d729752cd403884abb8b75269d76894 (patch) | |
tree | 0ffbd60bf8ad7023945074db07c0aa9ceea3d070 /shells/tcsh | |
parent | 0cf7a2b74c092ba1cd384c2f78a712e38cb2c6c2 (diff) | |
download | pkgsrc-bdd165f13d729752cd403884abb8b75269d76894.tar.gz |
don't apply s/5/2/ to OS_VERSION since this breaks later use of it,
e.g. creating a binary pkg with ${OS_VERSION} in the PACKAGES path.
Diffstat (limited to 'shells/tcsh')
-rw-r--r-- | shells/tcsh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shells/tcsh/Makefile b/shells/tcsh/Makefile index 5c50b8f48a2..e40ddddc6aa 100644 --- a/shells/tcsh/Makefile +++ b/shells/tcsh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2003/05/05 16:40:28 agc Exp $ +# $NetBSD: Makefile,v 1.44 2003/07/02 05:56:03 grant Exp $ # DISTNAME= tcsh-6.12.00 @@ -26,8 +26,8 @@ PLIST_SRC= ${WRKDIR}/PLIST-src .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "SunOS" -OS_VERSION!= ${ECHO} ${OS_VERSION} | ${SED} -e 's|5\.|2.|' -LOWER_OPSYS= solaris${OS_VERSION} +OS_VER!= ${ECHO} ${OS_VERSION} | ${SED} -e 's|5\.|2.|' +LOWER_OPSYS= solaris${OS_VER} .endif PKG_SHELL?= ${PREFIX}/bin/tcsh |