diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-20 19:24:02 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-20 19:24:02 +0000 |
commit | fdafbe1f4e372486a8006ed34b5e8e8a8b12c418 (patch) | |
tree | 46f02ee91b708a7c2487c9bdd551927004ef3da6 /make/openssl.mk | |
parent | 7fcf2836bc6bb434207c66c8cd591febe5222e7c (diff) | |
download | buildroot-novena-fdafbe1f4e372486a8006ed34b5e8e8a8b12c418.tar.gz buildroot-novena-fdafbe1f4e372486a8006ed34b5e8e8a8b12c418.zip |
Several more dependancy cleanups
Diffstat (limited to 'make/openssl.mk')
-rw-r--r-- | make/openssl.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/openssl.mk b/make/openssl.mk index 5792e5841..cb3ae9353 100644 --- a/make/openssl.mk +++ b/make/openssl.mk @@ -42,12 +42,12 @@ $(TARGET_DIR)/lib/libcrypto.so.0: $(STAGING_DIR)/lib/libcrypto.so.0 cp -fa $(STAGING_DIR)/lib/libssl.so* $(TARGET_DIR)/lib/ #cp -fa $(STAGING_DIR)/bin/openssl $(TARGET_DIR)/bin/ -$(TARGET_DIR)/usr/include/openssl/crypto.h: $(TARGET_DIR)/lib/libcrypto.so.0 +$(TARGET_DIR)/usr/lib/libssl.a: $(TARGET_DIR)/lib/libcrypto.so.0 mkdir -p $(TARGET_DIR)/usr/include cp -a $(STAGING_DIR)/include/openssl $(TARGET_DIR)/usr/include/ cp -dpf $(STAGING_DIR)/lib/libssl.a $(TARGET_DIR)/usr/lib/ cp -dpf $(STAGING_DIR)/lib/libcrypto.a $(TARGET_DIR)/usr/lib/ - touch -c $(TARGET_DIR)/usr/include/openssl/crypto.h + touch -c $(TARGET_DIR)/usr/lib/libssl.a openssl-headers: $(TARGET_DIR)/usr/include/openssl/crypto.h |