diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-05-24 13:30:55 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-05-24 13:30:55 +0000 |
commit | 7b9d6086f1f79a0e948bfdec1337fd452b7070ef (patch) | |
tree | 0d827258003926cef4100defc3eb781615974665 /graphics | |
parent | pkg_add seems to have problems if PLIST_FILES contain absolute path. (diff) |
Fix with bmake
Notes
Notes:
svn path=/head/; revision=318966
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ruby-gd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/ruby-gd/Makefile b/graphics/ruby-gd/Makefile index 9a1f0539db78..60bcb92b5ba5 100644 --- a/graphics/ruby-gd/Makefile +++ b/graphics/ruby-gd/Makefile @@ -35,7 +35,7 @@ LIB_DEPENDS+= gd:${PORTSDIR}/graphics/gd # Hmm, GREP and TRUE seem to be defined in the bsd.port.post.mk stage. .if exists(${LOCALBASE}/bin/gd2topng) -WITH_X11_CHECK!= ldd ${LOCALBASE}/bin/gd2topng | grep -w 'libX11\.so' || true +WITH_X11_CHECK!= ldd ${LOCALBASE}/bin/gd2topng | grep -w 'libX11\.so' || ${ECHO_CMD} .else WITH_X11_CHECK= # empty .endif |