From f223d0927ecc0e3b1b66df010a449543a6e5c6a4 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Fri, 5 Apr 2013 12:36:09 +0000 Subject: [PATCH] openssl: Pass in any TARGET_ASFLAGS Packages not picking up the regular TARGET_AS need their openwrt Makefiles tweaked. For a basic build, that's just openssl. This depends on patch 1/5. Signed-off-by: Jay Carlson Signed-off-by: Florian Fainelli SVN-Revision: 36201 --- package/libs/openssl/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/libs/openssl/Makefile b/package/libs/openssl/Makefile index a8b32570ff..049aad44a8 100644 --- a/package/libs/openssl/Makefile +++ b/package/libs/openssl/Makefile @@ -124,6 +124,7 @@ define Build/Compile depend $(_SINGLE)$(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ + ASFLAGS="$(TARGET_ASFLAGS) -c" \ AR="$(TARGET_CROSS)ar r" \ RANLIB="$(TARGET_CROSS)ranlib" \ OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \ @@ -131,6 +132,7 @@ define Build/Compile all $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ + ASFLAGS="$(TARGET_ASFLAGS) -c" \ AR="$(TARGET_CROSS)ar r" \ RANLIB="$(TARGET_CROSS)ranlib" \ OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \