diff options
author | roam <roam@FreeBSD.org> | 2001-11-02 19:05:39 +0800 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2001-11-02 19:05:39 +0800 |
commit | 5c69425c5a3dd6c0823b5a6ca5de89ff4f14dfee (patch) | |
tree | 48085664cfda6713aa07e4f67af9fd962255bffa /graphics | |
parent | c2753f498177c558fda5893acaa7938a8b9a146f (diff) | |
download | freebsd-ports-graphics-5c69425c5a3dd6c0823b5a6ca5de89ff4f14dfee.tar.gz freebsd-ports-graphics-5c69425c5a3dd6c0823b5a6ca5de89ff4f14dfee.tar.zst freebsd-ports-graphics-5c69425c5a3dd6c0823b5a6ca5de89ff4f14dfee.zip |
Fix the build when NOPROFILE is not defined in /etc/make.conf
or in the build environment.
PR: 31698
Submitted by: John Hildreth <partsman@ns2.slutpuppy.org> (to -ports)
Submitted by: Kirk Strauser <kirk@strauser.com> (the PR)
Approved by: mi
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gd2/files/Makefile.bsd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/gd2/files/Makefile.bsd b/graphics/gd2/files/Makefile.bsd index d2c84313fe5..cf40da3b07a 100644 --- a/graphics/gd2/files/Makefile.bsd +++ b/graphics/gd2/files/Makefile.bsd @@ -41,7 +41,7 @@ ${PROGS} ${TESTS}: ${SHLIB_NAME} lib${LIB}.a install: mkdir -p ${PREFIX}/include/gd - make LIB=${LIB} LIBDIR="${PREFIX}/lib" \ + make LIB=${LIB} LIBDIR="${PREFIX}/lib" NOPROFILE=true \ SHLIB_MAJOR=${SHLIB_MAJOR} SHLIB_MINOR=${SHLIB_MINOR} \ -f bsd.lib.mk install cd ${.CURDIR} && ${INSTALL_DATA} ${INCS} ${PREFIX}/include/gd |