R10B crypto fix
Jimmy Olgeni
olgeni@REDACTED
Thu Oct 7 13:25:08 CEST 2004
Hi,
Quick fix for the crypto application: INSTALL_PROGRAM may use the -s
flag, which causes "strip" to be invoked on Makefile, which is bound
to fail :)
--- lib/crypto/c_src/Makefile.in.orig Thu Oct 7 12:11:06 2004
+++ lib/crypto/c_src/Makefile.in Thu Oct 7 12:11:07 2004
@@ -121,7 +121,7 @@
release_spec: opt
$(INSTALL_DIR) $(RELSYSDIR)/priv/obj
$(INSTALL_DIR) $(RELSYSDIR)/priv/lib
- $(INSTALL_PROGRAM) $(DRV_MAKEFILE) $(RELSYSDIR)/priv/obj
+ $(INSTALL_DATA) $(DRV_MAKEFILE) $(RELSYSDIR)/priv/obj
$(INSTALL_PROGRAM) $(OBJS) $(RELSYSDIR)/priv/obj
$(INSTALL_PROGRAM) $(DYN_DRIVER) $(RELSYSDIR)/priv/lib
--
jimmy
More information about the erlang-questions
mailing list