aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2015-09-21 21:44:02 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2015-09-21 21:44:02 +0000
commit7c6cc9de3a52ce4eb1f30a41aafc0174211806c6 (patch)
tree96c2f43425bd7fd31d443b4719f933f4a0dd0396 /gnu
parent092a37c9f9ca469125da9577f79388a238d7867b (diff)
downloadsrc-7c6cc9de3a52ce4eb1f30a41aafc0174211806c6.tar.gz
src-7c6cc9de3a52ce4eb1f30a41aafc0174211806c6.zip
Fix installation of 32bit libraries after r288074.
FILES is not used when LIBRARIES_ONLY is set, which is used to build and install the lib32 sysroot. All of the csu files do quality as "libraries" for this case so just undefine LIBRARIES_ONLY. This is still better than the previous realinstall handling as it does not hook into META_MODE properly. Sponsored by: EMC / Isilon Storage Division
Notes
Notes: svn path=/head/; revision=288076
Diffstat (limited to 'gnu')
-rw-r--r--gnu/lib/csu/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/lib/csu/Makefile b/gnu/lib/csu/Makefile
index e181bd5ec557..de78c7ea367c 100644
--- a/gnu/lib/csu/Makefile
+++ b/gnu/lib/csu/Makefile
@@ -44,6 +44,8 @@ FILESMODE= ${LIBMODE}
FILESOWN= ${LIBOWN}
FILESGRP= ${LIBGRP}
FILESDIR= ${LIBDIR}
+# These FILES qualify as libraries for the purpose of LIBRARIES_ONLY.
+.undef LIBRARIES_ONLY
${OBJS} ${SOBJS}: ${SRCS:M*.h}