diff options
author | knu <knu@FreeBSD.org> | 2003-09-13 10:58:45 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2003-09-13 10:58:45 +0000 |
commit | dbb04209193c09020830fc09bb5c13a213518802 (patch) | |
tree | 2ffc726350294728c0d9705544560a349de9d6ae /graphics | |
parent | cbead43c3bb518a6ffafd78e22690df6a9cf338e (diff) | |
download | FreeBSD-ports-dbb04209193c09020830fc09bb5c13a213518802.zip FreeBSD-ports-dbb04209193c09020830fc09bb5c13a213518802.tar.gz |
Change `LIB_DEPENDS=' in the middle of optional dependency lines to
`LIB_DEPENDS+=', to prevent this port from getting built without tiff
support, which wasn't intended. (Luckily jpeg and png were enabled via
other indirect dependencies)
This should fix some dependent ports such as ruby-rmagick.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ImageMagick/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile index 7ed0099..492d139 100644 --- a/graphics/ImageMagick/Makefile +++ b/graphics/ImageMagick/Makefile @@ -112,7 +112,7 @@ CONFIGURE_ARGS+= --without-bzlib # HDF (Hierarchical Data Format) images .if !defined(WITHOUT_IMAGEMAGICK_HDF) -LIB_DEPENDS= df.1:${PORTSDIR}/graphics/hdf +LIB_DEPENDS+= df.1:${PORTSDIR}/graphics/hdf CONFIGURE_ARGS+= --with-hdf .endif |