diff options
author | gdt <gdt@pkgsrc.org> | 2012-01-25 21:28:14 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2012-01-25 21:28:14 +0000 |
commit | 3d869b2600951b4baecb61c5bc36aacbedb8418a (patch) | |
tree | adfbc065d9db19c026e641f9287bc56eb4b2c723 /geography | |
parent | 5b6da113979615155140b54a91d004cce79c94e2 (diff) | |
download | pkgsrc-3d869b2600951b4baecb61c5bc36aacbedb8418a.tar.gz |
MAKE_JOBS_SAFE=no
Non-repeatable build error reported by joerg@ - disable parallel
builds for now until this can be debugged.
Diffstat (limited to 'geography')
-rw-r--r-- | geography/gdal-lib/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/geography/gdal-lib/Makefile b/geography/gdal-lib/Makefile index 6ba421a1acf..587445994a6 100644 --- a/geography/gdal-lib/Makefile +++ b/geography/gdal-lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2012/01/24 15:24:49 gdt Exp $ +# $NetBSD: Makefile,v 1.42 2012/01/25 21:28:14 gdt Exp $ VERSION= 1.8.1 DISTNAME= gdal-${VERSION} @@ -11,6 +11,11 @@ HOMEPAGE= http://www.gdal.org/ COMMENT= Translator library for raster geospatial data formats LICENSE= mit +# There is mysterious failure to find gdal_version.h, even though it +# is not a generated file, apparently caused by an odd make path that +# fails to use the right includes. +MAKE_JOBS_SAFE= no + PKG_DESTDIR_SUPPORT= user-destdir USE_LANGUAGES= c c++ fortran77 |