You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2016/07/10 14:39:15 UTC

commons-crypto git commit: Make compiled filename agree with source file

Repository: commons-crypto
Updated Branches:
  refs/heads/master 6ed9de8ac -> dba8b4aaf


Make compiled filename agree with source file

Project: http://git-wip-us.apache.org/repos/asf/commons-crypto/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-crypto/commit/dba8b4aa
Tree: http://git-wip-us.apache.org/repos/asf/commons-crypto/tree/dba8b4aa
Diff: http://git-wip-us.apache.org/repos/asf/commons-crypto/diff/dba8b4aa

Branch: refs/heads/master
Commit: dba8b4aaf41c583eb2af5e3c061570571679ae54
Parents: 6ed9de8
Author: Sebb <se...@apache.org>
Authored: Sun Jul 10 15:39:11 2016 +0100
Committer: Sebb <se...@apache.org>
Committed: Sun Jul 10 15:39:11 2016 +0100

----------------------------------------------------------------------
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/dba8b4aa/Makefile
----------------------------------------------------------------------
diff --git a/Makefile b/Makefile
index 2d35d29..e579664 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@
 include Makefile.common
 
 COMMONS_CRYPTO_OUT:=$(TARGET)/$(commons-crypto)-$(os_arch)
-COMMONS_CRYPTO_OBJ:=$(addprefix $(COMMONS_CRYPTO_OUT)/,OpensslCryptoRandom.o OpenSslNative.o)
+COMMONS_CRYPTO_OBJ:=$(addprefix $(COMMONS_CRYPTO_OUT)/,OpenSslCryptoRandomNative.o OpenSslNative.o)
 
 # Windows uses different path separators
 ifeq ($(OS_NAME),Windows)
@@ -47,7 +47,7 @@ $(COMMONS_CRYPTO_OUT)/OpenSslNative.o : $(SRC_NATIVE)/org/apache/commons/crypto/
 	@mkdir -p $(@D)
 	$(CC) $(CFLAGS) -c $< -o $@
 
-$(COMMONS_CRYPTO_OUT)/OpensslCryptoRandom.o : $(SRC_NATIVE)/org/apache/commons/crypto/random/OpenSslCryptoRandomNative.c $(TARGET)/jni-classes/org/apache/commons/crypto/random/OpenSslCryptoRandomNative.h
+$(COMMONS_CRYPTO_OUT)/OpenSslCryptoRandomNative.o : $(SRC_NATIVE)/org/apache/commons/crypto/random/OpenSslCryptoRandomNative.c $(TARGET)/jni-classes/org/apache/commons/crypto/random/OpenSslCryptoRandomNative.h
 	@mkdir -p $(@D)
 	$(CC) $(CFLAGS) -c $< -o $@