diff options
author | Fabio Porcedda <fabio.porcedda@gmail.com> | 2015-02-27 10:19:22 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-02-28 10:10:21 +0100 |
commit | 1c499247ff10e994528e3a9ebfc227d21b5781e7 (patch) | |
tree | 0a4f9239c7b849cd999d85d22d149d8a31619431 | |
parent | a9079c7d86cd397e97e9cf23be42c5211ca09dec (diff) | |
download | buildroot-1c499247ff10e994528e3a9ebfc227d21b5781e7.tar.gz buildroot-1c499247ff10e994528e3a9ebfc227d21b5781e7.zip |
freetype: host-freetype-patch requires host-automake
The "make host-freetype-patch" fails because using the autogen.sh script
doesn't find the autoconf tool. The problem was already fixed for
"make freetype-patch" adding the "host-automake" as a prerequisite to
freetype-patch, so fix it by adding "host-automake" as a prerequisite to
"host-freetype-patch" too.
Fix build failure:
running `autoconf --force'
./autogen.sh: line 15: autoconf: command not found
error while running `autoconf --force'
package/pkg-generic.mk:146: recipe for target 'buildroot/output/build/host-freetype-2.5.5/.stamp_patched' failed
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/freetype/freetype.mk | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package/freetype/freetype.mk b/package/freetype/freetype.mk index 0de5ce3ded..56274cb436 100644 --- a/package/freetype/freetype.mk +++ b/package/freetype/freetype.mk @@ -98,6 +98,7 @@ HOST_FREETYPE_POST_INSTALL_HOOKS += HOST_FREETYPE_FIX_FREETYPE_INCLUDE $(eval $(autotools-package)) $(eval $(host-autotools-package)) -# freetype-patch uses autogen.sh so add it as a order-only-prerequisite -# because it is a phony target. -$(FREETYPE_TARGET_PATCH): | host-automake +# freetype-patch and host-freetype-patch use autogen.sh so add +# host-automake as a order-only-prerequisite because it is a phony +# target. +$(FREETYPE_TARGET_PATCH) $(HOST_FREETYPE_TARGET_PATCH): | host-automake |