From 58e07b12380a0114df5d31cf07a65710be9e64ef Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Thu, 14 Feb 2008 03:48:01 +0200 Subject: [PATCH] Changed glibc to call its 'general' postmake function just while building the default ABI --- base/glibc/glibc.conf | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/base/glibc/glibc.conf b/base/glibc/glibc.conf index 5674ebd08..6d8a59520 100644 --- a/base/glibc/glibc.conf +++ b/base/glibc/glibc.conf @@ -76,6 +76,11 @@ pkg_glibc_abi_preconf() { # filter out some unwanted header files var_append INSTALL_WRAPPER_FILTER "|" \ "sed -e 's,.*usr/include/.*\.h,/tmp/removed.h,'" + else + # only run postmake while building the default ABI + if atstage native; then + hook_add postmake 5 'pkg_glibc_postmake' + fi fi } @@ -162,7 +167,7 @@ glibc_prepatch() { done } -glibc_postmake() +pkg_glibc_postmake() { ln -sf libbsd-compat.a $root/usr/$slibdir/libbsd.a @@ -260,5 +265,3 @@ fi #fi hook_add prepatch 3 "glibc_prepatch" -hook_add postmake 5 "glibc_postmake" -