Browse Source

openssl: fix annoying build errors when changing upstream versions

SVN-Revision: 15880
Nicolas Thill 16 years ago
parent
commit
c1a929efbd
1 changed files with 3 additions and 2 deletions
  1. 3 2
      package/openssl/Makefile

+ 3 - 2
package/openssl/Makefile

@@ -93,8 +93,9 @@ endef
 TARGET_CFLAGS += $(FPIC)
 
 define Build/Compile
-	rm -rf $(PKG_INSTALL_DIR)
-	mkdir -p $(PKG_INSTALL_DIR)
+	# XXX: OpenSSL "make depend" will look for installed headers before its own,
+	# so remove installed stuff first
+	-$(SUBMAKE) -j1 clean-staging
 	$(MAKE) -C $(PKG_BUILD_DIR) \
 		MAKEDEPPROG="$(TARGET_CROSS)gcc" \
 		OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \