mirror of
git://slackware.nl/current.git
synced 2025-01-11 08:01:05 +01:00
10 lines
357 B
Text
10 lines
357 B
Text
# Temporary (hopefully) fix:
|
|||
if ! grep -q 'cmake_minimum_required' CMakeLists.txt ; then
|
|||
# Prepend a cmake_minimum_required stanza at the top, which enables
|
|||
# newer cmake features which the build needs:
|
|||
sed -i -e '1icmake_minimum_required(VERSION 2.8.9)\' CMakeLists.txt
|
|||
fi
|
|||
|
|||
# Don't build gpgme++
|
|||
sed -e '/gpgme++/d' -e '/qgpgme/d' -i CMakeLists.txt
|