From 22c9fba62b50f6549a93e3c1cf8f553595c85317 Mon Sep 17 00:00:00 2001 From: bdrewery Date: Mon, 21 Sep 2015 21:44:02 +0000 Subject: 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 --- gnu/lib/csu/Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gnu') diff --git a/gnu/lib/csu/Makefile b/gnu/lib/csu/Makefile index e181bd5..de78c7e 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} -- cgit v1.1