diff options
author | agc <agc> | 1999-06-28 11:52:26 +0000 |
---|---|---|
committer | agc <agc> | 1999-06-28 11:52:26 +0000 |
commit | 683c5681d1ae6b2656c6ed6778f79586498caf42 (patch) | |
tree | 683fb9d2cbf3950ae2ae8b6b28e5dd2250b39a95 /math | |
parent | 5022685d6aca6c173abceaa7bddf01aa20e8b3bb (diff) | |
download | pkgsrc-683c5681d1ae6b2656c6ed6778f79586498caf42.tar.gz |
Include bsd.prefs.mk before using ${CC} in a != assignment, just in case
CC is set to something non-standard.
Diffstat (limited to 'math')
-rw-r--r-- | math/octave/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math/octave/Makefile b/math/octave/Makefile index f787a02f51d..3462605285b 100644 --- a/math/octave/Makefile +++ b/math/octave/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 1999/04/26 18:56:15 garbled Exp $ +# $NetBSD: Makefile,v 1.11 1999/06/28 11:52:26 agc Exp $ # FreeBSD Id: Makefile,v 1.18 1998/09/27 20:10:45 steve Exp DISTNAME= octave-2.0.13 @@ -38,6 +38,8 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/doc/refcard/refcard-a4.ps ${PREFIX}/share/octave/2.0.13/doc ${INSTALL_DATA} ${WRKSRC}/doc/faq/Octave-FAQ.ps ${PREFIX}/share/octave/2.0.13/doc +.include "../../mk/bsd.prefs.mk" + GCC_VERSION!= ${CC} --version .if (${GCC_VERSION:C/-.*$$//} == egcs) |