diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-05-12 13:37:59 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-05-12 13:37:59 +0000 |
| commit | 428019989dc74139f466f68fe970a6ae246add0d (patch) | |
| tree | 66f61f0b3e49dd55ae9de870de9d5cdbed58549d | |
| parent | be60db5891f49f8a3039e2bfbe07fdb490fff88c (diff) | |
Notes
| -rw-r--r-- | Makefile.inc1 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index e36c0eb2fe93..1e7fd4d9a0dc 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -760,15 +760,15 @@ libraries: # These dependencies are not automatically generated: # -# lib/csu and gnu/lib/csu, gnu/lib/libgcc must be built before all +# gnu/lib/csu, gnu/lib/libgcc and lib/csu must be built before all # shared libraries for ELF. # +_startup_libs= gnu/lib/csu gnu/lib/libgcc .if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-${OBJFORMAT}) -_startup_libs= lib/csu/${MACHINE_ARCH}-${OBJFORMAT} +_startup_libs+= lib/csu/${MACHINE_ARCH}-${OBJFORMAT} .else -_startup_libs= lib/csu/${MACHINE_ARCH} +_startup_libs+= lib/csu/${MACHINE_ARCH} .endif -_startup_libs+= gnu/lib/csu gnu/lib/libgcc _prebuild_libs= |
