diff options
author | Kenji Rikitake <[email protected]> | 2010-02-10 17:40:15 +0859 |
---|---|---|
committer | Kenji Rikitake <[email protected]> | 2010-02-10 17:40:15 +0859 |
commit | a7491f27cb82ea5a67614f0de05e69f9d305ad93 (patch) | |
tree | 74231942e48a902653963ea55051c8c24d9828bf /lib/crypto/c_src | |
parent | 7457122ad3aa8dccb5439d3e430c93fe6ca2654e (diff) | |
download | otp-a7491f27cb82ea5a67614f0de05e69f9d305ad93.tar.gz otp-a7491f27cb82ea5a67614f0de05e69f9d305ad93.tar.bz2 otp-a7491f27cb82ea5a67614f0de05e69f9d305ad93.zip |
Fix Makefile permission problem of crypto library on FreeBSD Erlang/OTP building
This patch changes INSTALL_PROGRAM to INSTALL_DATA for the Makefile at
lib/crypto/priv/obj, which discontinues the building procedure of Erlang/OTP
on FreeBSD. Originally posted by Giacomo Olgeni as a part of FreeBSD port
patch files.
See
http://www.erlang.org/cgi-bin/ezmlm-cgi?3:mss:335:200811:hijljjocpmpkhgkhfkdl
for the detailed analysis.
Diffstat (limited to 'lib/crypto/c_src')
-rw-r--r-- | lib/crypto/c_src/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/c_src/Makefile.in b/lib/crypto/c_src/Makefile.in index 29263d7ac7..a66d196921 100644 --- a/lib/crypto/c_src/Makefile.in +++ b/lib/crypto/c_src/Makefile.in @@ -136,7 +136,7 @@ include $(ERL_TOP)/make/otp_release_targets.mk 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 |