diff options
author | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2002-05-27 02:02:18 +0000 |
---|---|---|
committer | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2002-05-27 02:02:18 +0000 |
commit | 5ff80e27ca655424146dd56b0ff80b096611acb4 (patch) | |
tree | 69f079bb40133bb0e0369e2951cd9a5381393211 /devel/hs-hat | |
parent | df629fd3ded41c895d4a7152702905b362bc62af (diff) | |
download | ports-5ff80e27ca655424146dd56b0ff80b096611acb4.tar.gz ports-5ff80e27ca655424146dd56b0ff80b096611acb4.zip |
Notes
Diffstat (limited to 'devel/hs-hat')
-rw-r--r-- | devel/hs-hat/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/devel/hs-hat/Makefile b/devel/hs-hat/Makefile index 9862aee52238..18e9fcf2be00 100644 --- a/devel/hs-hat/Makefile +++ b/devel/hs-hat/Makefile @@ -69,11 +69,19 @@ pre-fetch: post-patch: @${PERL} -pi.orig -e 's|-O3|${CFLAGS}|' ${WRKSRC}/Makefile.inc +pre-install: +.if exists(${PREFIX}/bin/hmake) && !defined(OVERRIDE_HMAKE) + @${ECHO} "" + @${ECHO} "It seems that there is already a version of hmake installed on" + @${ECHO} "this system. Since hmake is part of nhc98, please deinstall it," + @${ECHO} "or define OVERRIDE_HMAKE to override the installed version." + @${ECHO} "" + @${FALSE} +.endif # We need this to ensure that the libs will be installed into # ${PREFIX}/lib/nhc98. Otherwise the libs will be installed # into the build directory. The configure option won't work in the # ports system. -pre-install: ${RM} -f ${WRKSRC}/include/*.orig ${SED} -e "s#LIBDIR=.*##" \ < ${WRKSRC}/targets/ix86-FreeBSD/config.cache \ |