kde-l10n/update.sh
Ivailo Monev fc44b7a2c6 generic: drop support for building and installing from subdirectory
after configuration is done installation of translations for one
language only can still be done via:
make -C <subdir> install

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-10-02 17:09:15 +03:00

8 lines
160 B
Bash
Executable file

#!/bin/bash
sed 'add_subdirectory' -i CMakeLists.txt
for i in *;do
if [ -d "$i" ];then
echo "add_subdirectory( $i )" >> CMakeLists.txt
fi
done