summaryrefslogtreecommitdiffstats
path: root/src/ftgl.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2010-11-26 14:50:52 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2010-11-26 14:50:52 (GMT)
commit875d1249f5b5a7903fa28702ee02677f79ca98ac (patch)
tree0ed6deaf84f445070ab4671b6e45e485837113ad /src/ftgl.mk
parentf31580041f07afbd9eb9278b6d92ad261bd7d9b6 (diff)
downloadmxe-875d1249f5b5a7903fa28702ee02677f79ca98ac.zip
mxe-875d1249f5b5a7903fa28702ee02677f79ca98ac.tar.gz
mxe-875d1249f5b5a7903fa28702ee02677f79ca98ac.tar.bz2
fixed build rules of package ftgl
Diffstat (limited to 'src/ftgl.mk')
-rw-r--r--src/ftgl.mk10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/ftgl.mk b/src/ftgl.mk
index 0347fdf..24fa2b2 100644
--- a/src/ftgl.mk
+++ b/src/ftgl.mk
@@ -19,11 +19,17 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
+ cd '$(1)' && aclocal -I m4
+ cd '$(1)' && $(LIBTOOLIZE)
+ cd '$(1)' && automake --gnu
cd '$(1)' && autoconf
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
+ --prefix='$(PREFIX)/$(TARGET)' \
+ --without-x \
--disable-freetypetest \
- --prefix='$(PREFIX)/$(TARGET)'
- $(MAKE) -C '$(1)' -j '$(JOBS)' install
+ --with-ft-prefix='$(PREFIX)/$(TARGET)'
+ $(MAKE) -C '$(1)/src' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
+ $(MAKE) -C '$(1)/src' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
endef