diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2011-05-20 00:39:53 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2011-05-20 00:39:53 (GMT) |
commit | a52051f9285d5714c3a3ceaa978ebd28ff88638e (patch) | |
tree | 438b3369babeac51844d2e2c1d90b3a86dd66602 | |
parent | dc3a822505ecb9b22008decd21bd756a38f5aa15 (diff) | |
download | mxe-a52051f9285d5714c3a3ceaa978ebd28ff88638e.zip mxe-a52051f9285d5714c3a3ceaa978ebd28ff88638e.tar.gz mxe-a52051f9285d5714c3a3ceaa978ebd28ff88638e.tar.bz2 |
don't call autopoint in package xine-lib
-rw-r--r-- | src/xine-lib.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xine-lib.mk b/src/xine-lib.mk index 62b4057..f775c54 100644 --- a/src/xine-lib.mk +++ b/src/xine-lib.mk @@ -21,7 +21,10 @@ endef define $(PKG)_BUILD # rebuild configure script as one of the patches modifies configure.ac - cd '$(1)' && ./autogen.sh + cd '$(1)' && aclocal -I m4 + cd '$(1)' && $(LIBTOOLIZE) + cd '$(1)' && autoconf + cd '$(1)' && ./configure \ --host='$(TARGET)' \ --prefix='$(PREFIX)/$(TARGET)' \ |