Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 372233
Collapse All | Expand All

(-)a/GNUmakefile (-1 / +1 lines)
Lines 30-36 include $(srcdir)/mk/Autoconf.mk Link Here
30
30
31
ac_jpeg_ver = $(shell \
31
ac_jpeg_ver = $(shell \
32
	$(call ac_init,for libjpeg version);\
32
	$(call ac_init,for libjpeg version);\
33
	$(call ac_s_cmd,echo -e '\#include <jpeglib.h>\nJPEG_LIB_VERSION' \
33
	$(call ac_s_cmd,printf '\#include <jpeglib.h>\nJPEG_LIB_VERSION' \
34
		| cpp | tail -n 1);\
34
		| cpp | tail -n 1);\
35
	$(call ac_fini))
35
	$(call ac_fini))
36
36
(-)a/mk/Autoconf.mk (-3 / +2 lines)
Lines 24-30 ifneq ($(verbose),no) Link Here
24
  ac_fini	= echo "... result is $${rc}" >&2; echo >&2; echo "$${rc}"
24
  ac_fini	= echo "... result is $${rc}" >&2; echo >&2; echo "$${rc}"
25
else
25
else
26
  # normal
26
  # normal
27
  ac_init	= echo -n "checking $(1) ... " >&2; rc=no
27
  ac_init	= printf '%s' "checking $(1) ... " >&2; rc=no
28
  ac_b_cmd	= $(1) >/dev/null 2>&1 && rc=yes
28
  ac_b_cmd	= $(1) >/dev/null 2>&1 && rc=yes
29
  ac_s_cmd	= rc=`$(1) 2>/dev/null`
29
  ac_s_cmd	= rc=`$(1) 2>/dev/null`
30
  ac_fini	= echo "$${rc}" >&2; echo "$${rc}"
30
  ac_fini	= echo "$${rc}" >&2; echo "$${rc}"
Lines 162-168 config: Make.config Link Here
162
	@true
162
	@true
163
163
164
Make.config: $(srcdir)/GNUmakefile
164
Make.config: $(srcdir)/GNUmakefile
165
	@echo -e "$(make-config-q)" > $@
165
	@printf '%b' "$(make-config-q)" > $@
166
	@echo
166
	@echo
167
	@echo "Make.config written, edit if needed"
167
	@echo "Make.config written, edit if needed"
168
	@echo
168
	@echo
169
- 

Return to bug 372233