diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2018-04-09 02:30:08 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2018-04-09 02:30:08 +0800 |
commit | 36c33d2fab7fe6ab8265be8af063f28583bcb897 (patch) | |
tree | 56c5c4c92a142e09f7228a153fee22d10812164a /archivers | |
parent | ddabb9d7714146e6c6b1656a10606c5f7e30a44b (diff) | |
download | freebsd-ports-gnome-36c33d2fab7fe6ab8265be8af063f28583bcb897.tar.gz freebsd-ports-gnome-36c33d2fab7fe6ab8265be8af063f28583bcb897.tar.zst freebsd-ports-gnome-36c33d2fab7fe6ab8265be8af063f28583bcb897.zip |
Allow compiler and strip command with space.
It helps for ccache and cross-compiling.
PR: 227327
Submitted by: Guy Yur <guyyur@gmail.com>
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/unrar/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archivers/unrar/Makefile b/archivers/unrar/Makefile index 4c946ea731d1..d08b1a475f39 100644 --- a/archivers/unrar/Makefile +++ b/archivers/unrar/Makefile @@ -26,7 +26,7 @@ OPENSSL_AES_DESC= Use OpenSSL implementation of AES CONFLICTS_INSTALL?= zh-unrar unrar-iconv LDFLAGS+= -lpthread -MAKE_ARGS= CXX=${CXX} CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" STRIP=${STRIP_CMD} +MAKE_ARGS= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" STRIP="${STRIP_CMD}" MAKEFILE= makefile WRKSRC= ${WRKDIR}/${PORTNAME} |