diff options
author | Rainer Hurling <rhurlin@FreeBSD.org> | 2024-01-12 16:10:17 +0000 |
---|---|---|
committer | Rainer Hurling <rhurlin@FreeBSD.org> | 2024-01-12 16:31:16 +0000 |
commit | 02b2e1bdf494faf52c2827c7116cccb08e948129 (patch) | |
tree | 204cae273e463c04ea6df32ea8c526cebc659bbb | |
parent | ce6106abeeae5733fcf3bf1765b82b5a0b1b8d41 (diff) | |
download | ports-02b2e1bdf494faf52c2827c7116cccb08e948129.tar.gz ports-02b2e1bdf494faf52c2827c7116cccb08e948129.zip |
graphics/qgis: Avoid CMake warning MAKE_GRASS
CMake Warning:
Ignoring extra path from command line:
"/usr/ports/graphics/qgis/work/.build/WITH_GRASS8"
This happens, because of unneeded CMAKE_OFF=WITH_GRASSx.
Not functional change, not bump of PORTREVISION necessary.
PR: 274793
Reported by: Martin Birgmeier <d8zNeCFG@aon.at>
MFH: 2024Q1
-rw-r--r-- | graphics/qgis/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/graphics/qgis/Makefile b/graphics/qgis/Makefile index 8628efb03ab4..06f04d50b030 100644 --- a/graphics/qgis/Makefile +++ b/graphics/qgis/Makefile @@ -157,11 +157,9 @@ SERVER_DESC= Enable QGIS server GRASS7_BUILD_DEPENDS= grass7:databases/grass7 GRASS7_RUN_DEPENDS= ${GRASS7_BUILD_DEPENDS} GRASS7_CMAKE_BOOL= WITH_GRASS7 -GRASS7_CMAKE_OFF= WITH_GRASS8 GRASS8_BUILD_DEPENDS= grass8:databases/grass8 GRASS8_RUN_DEPENDS= ${GRASS8_BUILD_DEPENDS} GRASS8_CMAKE_BOOL= WITH_GRASS8 -GRASS8_CMAKE_OFF= WITH_GRASS7 SERVER_LIB_DEPENDS= libfcgi.so:www/fcgi SERVER_CMAKE_BOOL= WITH_SERVER WITH_SERVER_PLUGINS WITH_QSPATIALITE |