Skip to content
Snippets Groups Projects
Commit cfeaba45 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Merge branch 'fix-symlink-installation-on-macos' into 'master'

Fix symlinking on MacOS that doesn't have the -r option

See merge request !360
parents c3740162 9ddb2b1b
No related branches found
No related tags found
1 merge request!360Fix symlinking on MacOS that doesn't have the -r option
Pipeline #11790 failed
......@@ -86,9 +86,9 @@ install-libs: libs
mkdir -pv "$(DESTDIR)/lib"
cp -v "$(BUILD)/release/libc.a" "$(DESTDIR)/lib"
cp -v "$(BUILD)/release/libc.so" "$(DESTDIR)/lib"
ln -frsv "$(DESTDIR)/lib/libc.so" "$(DESTDIR)/lib/libc.so.6"
ln -vnfs libc.so "$(DESTDIR)/lib/libc.so.6"
cp -v "$(BUILD)/release/crt0.o" "$(DESTDIR)/lib"
ln -frsv "$(DESTDIR)/lib/crt0.o" "$(DESTDIR)/lib/crt1.o"
ln -vnfs crt0.o "$(DESTDIR)/lib/crt1.o"
cp -v "$(BUILD)/release/crti.o" "$(DESTDIR)/lib"
cp -v "$(BUILD)/release/crtn.o" "$(DESTDIR)/lib"
cp -v "$(BUILD)/release/ld_so" "$(DESTDIR)/lib/ld64.so.1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment