diff options
author | tv <tv> | 2005-11-09 21:24:12 +0000 |
---|---|---|
committer | tv <tv> | 2005-11-09 21:24:12 +0000 |
commit | e296a7091e8068bb6a59871677a3f8064651c115 (patch) | |
tree | d89493c6d05f9b58a8a3cce26ca51d1959016f29 /lang/cint | |
parent | 8c3c2697841d626bdfa4f776e25841ab1217f93e (diff) | |
download | pkgsrc-e296a7091e8068bb6a59871677a3f8064651c115.tar.gz |
Fail the build if the OPSYS check falls through in do-build.
Diffstat (limited to 'lang/cint')
-rw-r--r-- | lang/cint/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/cint/Makefile b/lang/cint/Makefile index 7a1248bb3ea..b5569e35c42 100644 --- a/lang/cint/Makefile +++ b/lang/cint/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2005/06/16 06:57:59 jlam Exp $ +# $NetBSD: Makefile,v 1.18 2005/11/09 21:24:12 tv Exp $ DISTNAME= cint5.15 PKGNAME= cint-5.15.174 @@ -35,6 +35,8 @@ do-build: ${SH} ./setup platform/netbsd ;; \ SunOS) \ ${SH} ./setup platform/solaris_gcc ;; \ + *) \ + ${ECHO} 'not yet ported to ${OPSYS}'; exit 1 ;; \ esac do-install: |