mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
toolchain/musl: fix build issues on mac os x
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36588 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
c395ac1aef
commit
9bff7dfd4b
27
toolchain/musl/patches-0.9.8/005-install_portability.patch
Normal file
27
toolchain/musl/patches-0.9.8/005-install_portability.patch
Normal file
@ -0,0 +1,27 @@
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -116,16 +116,20 @@ tools/musl-gcc: config.mak
|
||||
chmod +x $@
|
||||
|
||||
$(DESTDIR)$(bindir)/%: tools/%
|
||||
- install -D $< $@
|
||||
+ mkdir -p $(dir $@)
|
||||
+ install $< $@
|
||||
|
||||
$(DESTDIR)$(libdir)/%.so: lib/%.so
|
||||
- install -D -m 755 $< $@
|
||||
+ mkdir -p $(dir $@)
|
||||
+ install -m 755 $< $@
|
||||
|
||||
$(DESTDIR)$(libdir)/%: lib/%
|
||||
- install -D -m 644 $< $@
|
||||
+ mkdir -p $(dir $@)
|
||||
+ install -m 644 $< $@
|
||||
|
||||
$(DESTDIR)$(includedir)/%: include/%
|
||||
- install -D -m 644 $< $@
|
||||
+ mkdir -p $(dir $@)
|
||||
+ install -m 644 $< $@
|
||||
|
||||
$(DESTDIR)$(LDSO_PATHNAME): $(DESTDIR)$(syslibdir)
|
||||
ln -sf $(libdir)/libc.so $@ || true
|
||||
27
toolchain/musl/patches-0.9.9/005-install_portability.patch
Normal file
27
toolchain/musl/patches-0.9.9/005-install_portability.patch
Normal file
@ -0,0 +1,27 @@
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -116,16 +116,20 @@ tools/musl-gcc: config.mak
|
||||
chmod +x $@
|
||||
|
||||
$(DESTDIR)$(bindir)/%: tools/%
|
||||
- install -D $< $@
|
||||
+ mkdir -p $(dir $@)
|
||||
+ install $< $@
|
||||
|
||||
$(DESTDIR)$(libdir)/%.so: lib/%.so
|
||||
- install -D -m 755 $< $@
|
||||
+ mkdir -p $(dir $@)
|
||||
+ install -m 755 $< $@
|
||||
|
||||
$(DESTDIR)$(libdir)/%: lib/%
|
||||
- install -D -m 644 $< $@
|
||||
+ mkdir -p $(dir $@)
|
||||
+ install -m 644 $< $@
|
||||
|
||||
$(DESTDIR)$(includedir)/%: include/%
|
||||
- install -D -m 644 $< $@
|
||||
+ mkdir -p $(dir $@)
|
||||
+ install -m 644 $< $@
|
||||
|
||||
$(DESTDIR)$(LDSO_PATHNAME): $(DESTDIR)$(syslibdir)
|
||||
ln -sf $(libdir)/libc.so $@ || true
|
||||
Loading…
x
Reference in New Issue
Block a user