diff options
author | Chris Larson <clarson@kergoth.com> | 2004-04-16 21:24:38 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-04-16 21:24:38 +0000 |
commit | f8ea960c78488f22c7bdcba689fa0cadd7c45f2c (patch) | |
tree | 0e682e28a0738b036c0b8e197206642a178d1547 | |
parent | 7d8c5363dbadf6c1c7bc2e3fd106c365a254f536 (diff) |
Change the way glibc alters the do_compile step, to ensure that things dont leak into -initial that shouldn't.
BKrev: 40804f16QDSWO-vRXZcq0wf_xChW1g
-rw-r--r-- | glibc/glibc_2.3.2.oe | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/glibc/glibc_2.3.2.oe b/glibc/glibc_2.3.2.oe index 9f88d1a3d8..c0e840355b 100644 --- a/glibc/glibc_2.3.2.oe +++ b/glibc/glibc_2.3.2.oe @@ -131,15 +131,13 @@ do_configure () { CPPFLAGS="" oe_runconf } -do_compile_prepend() { - touch sysdeps/${TARGET_ARCH}/framestate.c -} - rpcsvc = "bootparam_prot.x nlm_prot.x rstat.x \ yppasswd.x klm_prot.x rex.x sm_inter.x mount.x \ rusers.x spray.x nfs_prot.x rquota.x key_prot.x" -do_compile_append() { +do_compile () { + touch sysdeps/${TARGET_ARCH}/framestate.c + autotools_do_compile ( cd ${S}/sunrpc/rpcsvc for r in ${rpcsvc}; do |