diff --git a/icons/Color/meson.build b/icons/Color/meson.build index dc51a5242d..d8c899c4f6 100644 --- a/icons/Color/meson.build +++ b/icons/Color/meson.build @@ -36,6 +36,13 @@ foreach install : install_icons endforeach install_data(icons, install_dir: gimpiconsdir / theme / outdir / 'apps') + + wilber_eek = '@0@/gimp-wilber-eek@1@'.format(indir, suffix) + if wilber_eek in icons + install_data(wilber_eek, + rename: 'image-missing@0@'.format(suffix), + install_dir: gimpiconsdir / theme / outdir / 'apps') + endif endforeach icons_core = [ '64/dialog-question.png', ] diff --git a/icons/Symbolic/meson.build b/icons/Symbolic/meson.build index 0662b171be..42936c8cce 100644 --- a/icons/Symbolic/meson.build +++ b/icons/Symbolic/meson.build @@ -41,6 +41,18 @@ foreach install : install_icons endforeach install_data(icons, install_dir: gimpiconsdir / theme / outdir / 'apps') + + wilber_eek = '@0@/gimp-wilber-eek@1@'.format(indir, suffix) + if wilber_eek in icons + # Note: since this is just a copy of gimp-wilber-week, we could just do a + # symlink with install_symlink(), but this is only available in meson 0.61.0 + # and looking at its code, it would apparently fail if symlinks are not + # available in the target OS (instead of silently and intelligently falling + # back to doing a copy). + install_data(wilber_eek, + rename: 'image-missing@0@'.format(suffix), + install_dir: gimpiconsdir / theme / outdir / 'apps') + endif endforeach icons_core = [ '64/gimp-question.png', ]