diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-03-19 12:28:48 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-03-19 12:28:48 +0100 |
commit | d6d604f710f3c7c24047374688d6b6d19eaeb694 (patch) | |
tree | 8b35aa77d50b461b49a170d80fd5d878307f0d92 /GNUmakefile | |
parent | 954b9c2fc863d2bb1a1397025307bf11bab50b11 (diff) | |
download | fbida-d6d604f710f3c7c24047374688d6b6d19eaeb694.tar.gz |
fix macos build failure
patch by Stephen Thirlwall <sdt@dr.com>
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 2efae6c..af91be4 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -30,8 +30,8 @@ include $(srcdir)/mk/Autoconf.mk ac_jpeg_ver = $(shell \ $(call ac_init,for libjpeg version);\ - $(call ac_s_cmd,echo -e '\#include <jpeglib.h>\nJPEG_LIB_VERSION' \ - | cpp | tail -n 1);\ + $(call ac_s_cmd,echo JPEG_LIB_VERSION \ + | cpp -include jpeglib.h | tail -n 1);\ $(call ac_fini)) define make-config |