diff options
author | asami <asami@FreeBSD.org> | 1998-08-07 22:49:31 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-08-07 22:49:31 +0000 |
commit | 85244f3c4f19ca5a1a28eb1e3181bfc7d094ddf5 (patch) | |
tree | 9123ac40cb51e7048c20f785f436da05e43f7c22 /lang/glibstdc++28 | |
parent | d48c5312ffc97eda9cb08048c42df412bf21d977 (diff) | |
download | FreeBSD-ports-85244f3c4f19ca5a1a28eb1e3181bfc7d094ddf5.zip FreeBSD-ports-85244f3c4f19ca5a1a28eb1e3181bfc7d094ddf5.tar.gz |
Make these ports (TenDRA, egcs, gcc28, glibstdc++28 and guavac, all
under lang) use ${OSREL} as defined in bsd.port.mk rev 1.281 and
1.227.2.43.
Note gcc28 is hopelessly broken, it uses an undefined variable
${GNUOSREL} and thus has an empty string wherever ${OSREL} should
be. However, it's consistent with its own PLIST at the current state
so I haven't "fixed" it yet.
Diffstat (limited to 'lang/glibstdc++28')
-rw-r--r-- | lang/glibstdc++28/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lang/glibstdc++28/Makefile b/lang/glibstdc++28/Makefile index 0e1a66a..a401f12 100644 --- a/lang/glibstdc++28/Makefile +++ b/lang/glibstdc++28/Makefile @@ -4,7 +4,7 @@ # Date created: 03 Mar 1998 # Whom: David O'Brien <obrien@NUXI.com> # -# $Id: Makefile,v 1.2 1998/03/11 12:25:31 obrien Exp $ +# $Id: Makefile,v 1.3 1998/04/20 10:36:05 obrien Exp $ # DISTNAME= libstdc++-2.8.1.1 @@ -21,14 +21,13 @@ RUN_DEPENDS= gcc28:${PORTSDIR}/lang/gcc28 \ CC= gcc28 CXX= g++28 -GNUOSREL!= uname -r | sed -e 's/[-(].*//' -GCC28DIR= lib/gcc-lib/i386-unknown-freebsd${GNUOSREL}/2.8.1 +GCC28DIR= lib/gcc-lib/i386-unknown-freebsd${OSREL}/2.8.1 GNU_CONFIGURE= yes USE_GMAKE= yes PLIST= ${WRKDIR}/PLIST.fixedup pre-install: - ${SED} -e 's:%%GNUOSREL%%:${GNUOSREL}:' \ + ${SED} -e 's:%%GNUOSREL%%:${OSREL}:' \ -e 's:%%GCC28SUBDIR%%:${GCC28DIR}:' \ ${PKGDIR}/PLIST > ${PLIST} |