diff options
author | Paul Fertser <fercerpav@gmail.com> | 2023-01-20 14:54:59 +0000 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2023-01-20 17:44:14 -0800 |
commit | 1e8584dc581567d12c9f4fcb1e1dd29b7a189ae9 (patch) | |
tree | 1efeeb89db6debb67e3e750fc8636925df0c1a7e /net/isc-dhcp/patches | |
parent | dd48483a60080ea5f3b83d5d4c71a9ac7b27043b (diff) |
treewide: quote CC and CXX
When CC is set to e.g. "ccache mips-openwrt-linux-musl-gcc" it needs
to be quoted to avoid word splitting on substitution.
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Diffstat (limited to 'net/isc-dhcp/patches')
-rw-r--r-- | net/isc-dhcp/patches/510-bind-CC.patch | 2 | ||||
-rw-r--r-- | net/isc-dhcp/patches/520-bind-no-catgets.patch | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/isc-dhcp/patches/510-bind-CC.patch b/net/isc-dhcp/patches/510-bind-CC.patch index dcee7593c..bbbd949f0 100644 --- a/net/isc-dhcp/patches/510-bind-CC.patch +++ b/net/isc-dhcp/patches/510-bind-CC.patch @@ -5,7 +5,7 @@ rm -rf ${cleandirs} ${cleanfiles} ; \ (cd ${bindsrcdir} && \ - ./configure ${bindconfig} > ${binddir}/configure.log); \ -+ export CC=${CROSS_CC} AR=${TARGET_AR} RANLIB=${TARGET_RANLIB} && \ ++ export CC="${CROSS_CC}" AR=${TARGET_AR} RANLIB=${TARGET_RANLIB} && \ + ./configure ${bindconfig} --disable-atomic \ + --disable-kqueue --disable-epoll --disable-kqueue \ + --disable-epoll --disable-devpoll --without-openssl \ diff --git a/net/isc-dhcp/patches/520-bind-no-catgets.patch b/net/isc-dhcp/patches/520-bind-no-catgets.patch index bd956032c..fbd4d5dc4 100644 --- a/net/isc-dhcp/patches/520-bind-no-catgets.patch +++ b/net/isc-dhcp/patches/520-bind-no-catgets.patch @@ -3,7 +3,7 @@ @@ -57,6 +57,7 @@ bind1: rm -rf ${cleandirs} ${cleanfiles} ; \ (cd ${bindsrcdir} && \ - export CC=${CROSS_CC} AR=${TARGET_AR} RANLIB=${TARGET_RANLIB} && \ + export CC="${CROSS_CC}" AR=${TARGET_AR} RANLIB=${TARGET_RANLIB} && \ + ac_cv_func_catgets=no \ ./configure ${bindconfig} --disable-atomic \ --disable-kqueue --disable-epoll --disable-kqueue \ |