summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/Makefile3
-rw-r--r--usr.sbin/init/Makefile3
2 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile
index 7cf3d01..c75ebd0 100644
--- a/usr.sbin/Makefile
+++ b/usr.sbin/Makefile
@@ -1,6 +1,7 @@
CC =
LD =
+LDSO =
.PHONY: all
all:
- cd init/; make CC=$(CC) LD=$(LD)
+ cd init/; make LDSO=$(LDSO) CC=$(CC) LD=$(LD)
diff --git a/usr.sbin/init/Makefile b/usr.sbin/init/Makefile
index 4b578f8..fa65c8d 100644
--- a/usr.sbin/init/Makefile
+++ b/usr.sbin/init/Makefile
@@ -1,7 +1,8 @@
CC =
LD =
+LDSO =
.PHONY: all
all:
$(CC) -c main.c -o main.o;
- $(LD) main.o -o init -e main
+ $(LD) --dynamic-linker /usr/lib/ld.so $(LDSO) main.o -o init -e main