]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mkosi: Disable translations 18186/head
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Sat, 9 Jan 2021 19:05:56 +0000 (20:05 +0100)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 10 Jan 2021 11:44:21 +0000 (12:44 +0100)
Speeds up incremental builds by half a second. Let's assume translations
won't be necessary in the resulting test images.

mkosi.build

index ede394f4fdf86a766cc4ee15f3ec90cae6b3f377..d7fbff78b8068066459c8c9dd2307deadd047e5d 100755 (executable)
@@ -84,7 +84,13 @@ if [ ! -f "$BUILDDIR"/build.ninja ] ; then
                 fi
         fi
 
-        meson "$BUILDDIR" -D "sysvinit-path=$sysvinit_path" -D "rootprefix=$rootprefix" -D man=false -D "nobody-user=$nobody_user" -D "nobody-group=$nobody_group"
+        meson "$BUILDDIR" \
+                -D "sysvinit-path=$sysvinit_path" \
+                -D "rootprefix=$rootprefix" \
+                -D man=false \
+                -D "nobody-user=$nobody_user" \
+                -D "nobody-group=$nobody_group" \
+                -D translations=false
 fi
 
 cd "$BUILDDIR"