diff options
author | bapt <bapt@FreeBSD.org> | 2013-05-02 22:09:21 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-05-02 22:09:21 +0800 |
commit | e001b601fb2a38f6d01c9726de51a1a681e75d45 (patch) | |
tree | 3ca9d003709255f9b42715a2de610cd6b015920e /Mk | |
parent | efbf8eb0188919104b7a60e5d20f9bee7688e99f (diff) | |
download | freebsd-ports-gnome-e001b601fb2a38f6d01c9726de51a1a681e75d45.tar.gz freebsd-ports-gnome-e001b601fb2a38f6d01c9726de51a1a681e75d45.tar.zst freebsd-ports-gnome-e001b601fb2a38f6d01c9726de51a1a681e75d45.zip |
Do bmake complaining about non-zero return, while here stop hardcoding make
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.gnustep.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.gnustep.mk b/Mk/bsd.gnustep.mk index 7e40c1bd2914..fa109251e308 100644 --- a/Mk/bsd.gnustep.mk +++ b/Mk/bsd.gnustep.mk @@ -542,7 +542,7 @@ do-install: .endif .if !defined(GNUSTEP_WITH_BASE_GCC) -TARGLIB!= (cd ${PORTSDIR}/${GNUSTEP_GCC_PORT} && make -V TARGLIB) +TARGLIB!= ${MAKE} -C ${PORTSDIR}/${GNUSTEP_GCC_PORT} -V TARGLIB .endif .endif |