From 927568e956100baa48b071b0c64bfbb9991f7eeb Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Fri, 24 Apr 2026 19:28:18 +0200 Subject: [PATCH] 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 --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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) -- 2.47.3