From 2234c6a094bb665b69c96f713e313373ec76e377 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Sat, 19 Dec 2020 15:25:41 +0100 Subject: [PATCH] mkosi: Use --only-changed meson option when installing Recently, mkosi gained support for specifying an --install-directory option to save the contents of the install directory between bulids. By enabling the --only-changed meson install option, meson won't overwrite the contents of files that haven't changed since the last build when using --install-directory. --- mkosi.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkosi.build b/mkosi.build index f170f9b957..5da5207fb5 100755 --- a/mkosi.build +++ b/mkosi.build @@ -98,9 +98,9 @@ fi # Ubuntu Focal is stuck with meson 0.53.0. if [ "$(meson -v | cut -d . -f 2)" -gt 53 ] ; then - meson install -C "$BUILDDIR" --quiet --no-rebuild + meson install -C "$BUILDDIR" --quiet --no-rebuild --only-changed else - meson install -C "$BUILDDIR" --no-rebuild + meson install -C "$BUILDDIR" --no-rebuild --only-changed fi mkdir -p "$DESTDIR"/etc