From: krant Date: Fri, 19 Apr 2024 11:10:45 +0000 (+0300) Subject: socat: fix compile error when ccache is enabled X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=2650de46866572f110c28b5a3ddff5ee86c59f45;p=feed%2Fpackages.git socat: fix compile error when ccache is enabled Signed-off-by: krant --- diff --git a/net/socat/Makefile b/net/socat/Makefile index 6da3aee467..4afaf7e784 100644 --- a/net/socat/Makefile +++ b/net/socat/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=socat PKG_VERSION:=1.8.0.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://www.dest-unreach.org/socat/download @@ -58,6 +58,9 @@ CONFIGURE_ARGS += \ --disable-readline \ --enable-termios +## procan.c fails to compile when ccache is enabled +MAKE_FLAGS += CC="$(TARGET_CC_NOCACHE)" + ifneq ($(CONFIG_SOCAT_SSL),y) CONFIGURE_ARGS+= --disable-openssl endif