mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 19:14:30 +04:00
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>
This commit is contained in:
committed by
Rosen Penev
parent
dd48483a60
commit
1e8584dc58
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
||||
PKG_NAME:=isc-dhcp
|
||||
UPSTREAM_NAME:=dhcp
|
||||
PKG_VERSION:=4.4.3
|
||||
PKG_RELEASE:=$(AUTORELEASE)
|
||||
PKG_RELEASE:=6
|
||||
|
||||
PKG_LICENSE:=BSD-3-Clause
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
@@ -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 \
|
||||
|
||||
@@ -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 \
|
||||
|
||||
Reference in New Issue
Block a user