diff options
author | Rich Felker <dalias@aerifal.cx> | 2015-04-23 16:49:55 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-04-23 16:49:55 -0400 |
commit | f109781c16b0cf82cf6bf523ff77ab98a023a999 (patch) | |
tree | bcfe4145fdec3ab3255e49751d71b64dff8bc516 | |
parent | 18938c299c0923e7034e8bfc5b250ded3b0ef78a (diff) | |
download | musl-f109781c16b0cf82cf6bf523ff77ab98a023a999.tar.gz musl-f109781c16b0cf82cf6bf523ff77ab98a023a999.tar.xz musl-f109781c16b0cf82cf6bf523ff77ab98a023a999.zip |
add dependency of dlstart.lo on crt_arch.h to Makefile
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 15a30f83..6559295e 100644 --- a/Makefile +++ b/Makefile @@ -87,7 +87,7 @@ src/internal/version.lo: src/internal/version.h src/ldso/dlstart.lo src/ldso/dynlink.lo: src/internal/dynlink.h arch/$(ARCH)/reloc.h -crt/crt1.o crt/Scrt1.o: $(wildcard arch/$(ARCH)/crt_arch.h) +crt/crt1.o crt/Scrt1.o src/ldso/dlstart.lo: $(wildcard arch/$(ARCH)/crt_arch.h) crt/Scrt1.o: CFLAGS += -fPIC |