util-linux: apply x86 workaround with ccache.
This commit is contained in:
parent
236ba78177
commit
e562455b52
|
@ -39,7 +39,14 @@ do_configure() {
|
|||
--enable-write --localstatedir=/run
|
||||
}
|
||||
do_build() {
|
||||
make ${makejobs}
|
||||
if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
|
||||
# XXX
|
||||
export CCACHE_DISABLED=1
|
||||
make ${makejobs}
|
||||
unset CCACHE_DISABLED
|
||||
else
|
||||
make ${makejobs}
|
||||
fi
|
||||
}
|
||||
do_install() {
|
||||
make usrsbin_execdir=/usr/bin DESTDIR=${DESTDIR} install
|
||||
|
|
Loading…
Reference in New Issue
Block a user