From: Aurelien Jarno Date: Fri, 24 Apr 2026 17:28:18 +0000 (+0200) Subject: Makefile: do not use a temporary file to test iconv X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;p=thirdparty%2Flm-sensors.git Makefile: do not use a temporary file to test iconv Using a predictible temporary file name in /tmp is a security risk. It could be used to overwrite or delete arbitrary files through a symlink, possibly as root when running for instance "sudo make install". Use "-o /dev/null" instead, which is supported by at least clang and gcc. Fixes: 68bda219526d --- diff --git a/Makefile b/Makefile index 2adae7081..1320407bd 100644 --- a/Makefile +++ b/Makefile @@ -177,15 +177,13 @@ ifndef LIBICONV ICONV_TEST := $(shell printf '%s\n' \ '#include ' \ 'int main() { iconv_t cd = iconv_open("UTF-8", "ASCII"); return 0; }' \ - | $(CC) $(ALL_CPPFLAGS) -x c - -o /tmp/lm_sensors_iconv_test 2>/dev/null && echo "builtin" || echo "external") + | $(CC) $(ALL_CPPFLAGS) -x c - -o /dev/null 2>/dev/null && echo "builtin" || echo "external") ifeq ($(ICONV_TEST),builtin) LIBICONV := else LIBICONV := -liconv endif - - $(shell rm -f /tmp/lm_sensors_iconv_test) endif EXLDFLAGS := -Wl,-rpath,$(LIBDIR) $(ALL_LDFLAGS)