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
ICONV_TEST := $(shell printf '%s\n' \
'#include <iconv.h>' \
'int main() { iconv_t cd = iconv_open("UTF-8", "ASCII"); return 0; }' \
ICONV_TEST := $(shell printf '%s\n' \
'#include <iconv.h>' \
'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
ifeq ($(ICONV_TEST),builtin)
LIBICONV :=
else
LIBICONV := -liconv
endif
-
- $(shell rm -f /tmp/lm_sensors_iconv_test)
endif
EXLDFLAGS := -Wl,-rpath,$(LIBDIR) $(ALL_LDFLAGS)
endif
EXLDFLAGS := -Wl,-rpath,$(LIBDIR) $(ALL_LDFLAGS)