blob: 5b74ce77cd5fe1a2c06c3ae574495ac3a34e6000 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- erlang/Makefile.in.orig 2006-05-12 07:43:44.000000000 -0700
+++ erlang/Makefile.in 2006-05-20 13:42:29.000000000 -0700
@@ -545,9 +545,10 @@
# Install erlang base public files
#
install.bin:
+ cd $(BINDIR); \
for file in $(ERL_BASE_PUB_FILES); do \
rm -f $(BINDIR)/$$file; \
- ${LN_S} $(ERLANG_BINDIR)/$$file $(BINDIR)/$$file; \
+ ${LN_S} ../lib/erlang/bin/$$file .; \
done
#
|