diff options
author | Max Brazhnikov <makc@FreeBSD.org> | 2011-04-08 19:26:19 +0000 |
---|---|---|
committer | Max Brazhnikov <makc@FreeBSD.org> | 2011-04-08 19:26:19 +0000 |
commit | 9258c3ba11d703771f102d988178aad2b72b6adf (patch) | |
tree | 8a262c1e59f936bbebda6803cf0b84773b301b48 /science/kst2 | |
parent | 74ea3c18038185910f21a6f417c2a119f3bea932 (diff) |
- Kst is broken with undefined CMAKE_BUILD_TYPE. Set CMAKE_BUILD_TYPE to
Release, until a proper fix will be committed to bsd.cmake.mk
- Enable MAKE_JOBS_SAFE again
Reported by: pointyhat
Notes
Notes:
svn path=/head/; revision=272411
Diffstat (limited to 'science/kst2')
-rw-r--r-- | science/kst2/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/science/kst2/Makefile b/science/kst2/Makefile index 33858a30493d..e49fedc64e88 100644 --- a/science/kst2/Makefile +++ b/science/kst2/Makefile @@ -22,10 +22,12 @@ USE_QT_VER= 4 QT_COMPONENTS= gui xml designer svg opengl \ qmake_build moc_build rcc_build uic_build USE_LDCONFIG= yes -#MAKE_JOBS_SAFE= yes +MAKE_JOBS_SAFE= yes CMAKE_SOURCE_PATH= ${WRKSRC}/cmake CMAKE_ARGS+= -Dkst_install_prefix=${PREFIX} +#Kst does not support empty CMAKE_BUILD_TYPE +CMAKE_BUILD_TYPE= Release MAN1= kst2.1 |