mirror of
git://slackware.nl/current.git
synced 2025-01-11 08:01:05 +01:00
8 lines
281 B
Text
8 lines
281 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
|
|||
|