diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-21 08:08:03 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-21 08:08:03 +0100 |
commit | 4d16413c4f837eadb8c2940a86a0ceb536089a60 (patch) | |
tree | 7581622c6215bb84b134130a45a9737fbde95458 /package/libx264 | |
parent | f319f27987a02309892fbf87649ef494e885d7c3 (diff) |
another try to fix autobuilder, use make depend explicitely
Diffstat (limited to 'package/libx264')
-rw-r--r-- | package/libx264/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package/libx264/Makefile b/package/libx264/Makefile index 082ce4bcd..a38bff5f2 100644 --- a/package/libx264/Makefile +++ b/package/libx264/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:= libx264 # actually is git checkout from 22.01.2014 PKG_VERSION:= 1.0.1 -PKG_RELEASE:= 4 +PKG_RELEASE:= 5 PKG_MD5SUM:= 6be3e8adeaf6b007bbc04026b6ebd304 PKG_DESCR:= H264 encoding library PKG_SECTION:= libs @@ -26,12 +26,16 @@ ifeq ($(ADK_TARGET_SYSTEM_SHARP_ZAURUS),y) CONFIGURE_ARGS+= --disable-asm endif CONFIGURE_ARGS+= --disable-cli \ + --disable-opencl \ --enable-shared \ --prefix=/usr \ --host=${REAL_GNU_TARGET_NAME} \ --sysroot=${STAGING_TARGET_DIR} \ --cross-prefix=$(TARGET_CROSS) +post-configure: + cd $(WRKBUILD); $(MAKE) depend + libx264-install: $(INSTALL_DIR) $(IDIR_LIBX264)/usr/lib $(CP) $(WRKINST)/usr/lib/libx264*.so* \ |