fix(AUR): Remove failing call to version.sh (#877)

version.sh is supposed to set the GIT_TAG macro in version.hpp to the
output of 'git describe ...', however it uses relative paths and can't
find 'include/version.hpp'

'include/CMakeLists.txt' already has the same functionality so this is
not needed
This commit is contained in:
Patrick Ziegler 2017-12-04 00:25:08 +01:00 committed by NBonaparte
parent bf16a4d415
commit 066ee35fc3

View File

@ -35,9 +35,6 @@ prepare() {
build() {
cd "${_pkgname}/build" || exit 1
if [ -x ../common/version.sh ]; then
../common/version.sh
fi
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
cmake --build .
}