diff options
Diffstat (limited to 'crypto/idea/Makefile.uni')
-rw-r--r-- | crypto/idea/Makefile.uni | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/idea/Makefile.uni b/crypto/idea/Makefile.uni index 354123dac8..c83339ad6d 100644 --- a/crypto/idea/Makefile.uni +++ b/crypto/idea/Makefile.uni @@ -15,6 +15,7 @@ MAKE= make MAKEDEPEND= makedepend MAKEFILE= Makefile.uni AR= ar r +RANLIB= ranlib IDEA_ENC=i_cbc.o @@ -39,7 +40,7 @@ all: $(LIB) $(TEST) $(APPS) $(LIB): $(LIBOBJ) $(AR) $(LIB) $(LIBOBJ) - sh $(TOP)/ranlib.sh $(LIB) + $(RANLIB) $(LIB) test: $(TEST) ./$(TEST) |