* bootstrap.conf: Work around VPATH issue

This commit is contained in:
Tim Rühsen 2019-05-05 20:34:09 +02:00
parent 021458ddf2
commit e3790ad2a3

View File

@ -166,4 +166,10 @@ bootstrap_post_import_hook ()
sed -e "s/gl_unicase_special_lookup.*/gl_unicase_special_lookup\ \(const char \*str, size_t len\)/g" \
> lib/unicase/special-casing-table.h
fi
# ./bootstrap calls 'autopoint --force' which will overwrite
# po/Makevars.template. So here we add what we need for a VPATH
# build. ./bootstrap will create po/Makevars from po/Makevars.template
# after our change.
echo 'PACKAGE_GNU = yes' >> po/Makevars.template
}