pgo: pgo.sh: allow a pre-existing build directory

This commit is contained in:
Daniel Eklöf 2021-09-04 18:29:20 +02:00
parent 579e1f80b4
commit e907ec209c
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -14,10 +14,10 @@ srcdir=$(realpath "${2}")
blddir=$(realpath "${3}")
shift 3
if [ -e "${blddir}" ]; then
echo "error: ${blddir}: build directory already exists"
exit 1
fi
# if [ -e "${blddir}" ]; then
# echo "error: ${blddir}: build directory already exists"
# exit 1
# fi
compiler=other
do_pgo=no