diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-08-18 08:12:02 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-08-18 08:12:02 +0000 |
commit | a0a0249e5c5966b9cbc611fa7e0bca246fbd2c30 (patch) | |
tree | 4dc7997772825725afdee47fddec62686eb40761 /package/libgcrypt | |
parent | 0fde5757a83ebd4f4bf437103f90637756303d9c (diff) | |
download | upstream-a0a0249e5c5966b9cbc611fa7e0bca246fbd2c30.tar.gz upstream-a0a0249e5c5966b9cbc611fa7e0bca246fbd2c30.tar.bz2 upstream-a0a0249e5c5966b9cbc611fa7e0bca246fbd2c30.zip |
disable asm, set common lib searchpath
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1692 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libgcrypt')
-rw-r--r-- | package/libgcrypt/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/libgcrypt/Makefile b/package/libgcrypt/Makefile index c2be8af4e8..4f9077dbea 100644 --- a/package/libgcrypt/Makefile +++ b/package/libgcrypt/Makefile @@ -23,7 +23,7 @@ $(PKG_BUILD_DIR)/.configured: $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ CPPFLAGS="-I$(STAGING_DIR)/usr/include" \ - LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ + LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ @@ -47,6 +47,7 @@ $(PKG_BUILD_DIR)/.configured: --enable-shared \ --enable-static \ --disable-rpath \ + --disable-asm \ --with-gpg-error-prefix="$(STAGING_DIR)/usr" \ ); touch $@ |