Make short-circuit builds work
The build would fail because the target already exists. Use "-f" to make it work. This is useful because glibc takes a while to build ;)
This commit is contained in:
parent
6756999ced
commit
2dfb5f35bd
@ -1677,10 +1677,10 @@ cp benchtests/scripts/validate_benchout.py %{glibc_sysroot}%{_prefix}/libexec/gl
|
|||||||
# The #line directives gperf generates do not give the proper
|
# The #line directives gperf generates do not give the proper
|
||||||
# file name relative to the build directory.
|
# file name relative to the build directory.
|
||||||
pushd locale
|
pushd locale
|
||||||
ln -s programs/*.gperf .
|
ln -sf programs/*.gperf .
|
||||||
popd
|
popd
|
||||||
pushd iconv
|
pushd iconv
|
||||||
ln -s ../locale/programs/charmap-kw.gperf .
|
ln -sf ../locale/programs/charmap-kw.gperf .
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%if %{with docs}
|
%if %{with docs}
|
||||||
@ -1765,7 +1765,7 @@ for lib in lib lib64; do
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
set -x
|
set -x
|
||||||
ln -s $sltarget usr/$lib/$slbase
|
ln -sf $sltarget usr/$lib/$slbase
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user