diff options
author | raveit65 <[email protected]> | 2019-03-24 12:57:52 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-03-25 13:10:42 +0100 |
commit | a43b1db38ada87bb82e583375d467e3146232043 (patch) | |
tree | ac3ca5826d894b57b5600eba08539587a13ce72b /logview/data/icons/Makefile.am | |
parent | d20242dd35e7711463516691807e20b404013ec1 (diff) | |
download | mate-utils-a43b1db38ada87bb82e583375d467e3146232043.tar.bz2 mate-utils-a43b1db38ada87bb82e583375d467e3146232043.tar.xz |
travis: add new build dependencies
Diffstat (limited to 'logview/data/icons/Makefile.am')
-rw-r--r-- | logview/data/icons/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/logview/data/icons/Makefile.am b/logview/data/icons/Makefile.am index 7dcf7a2c..9db44489 100644 --- a/logview/data/icons/Makefile.am +++ b/logview/data/icons/Makefile.am @@ -18,19 +18,19 @@ public_icons = \ $(NULL) hicolor_apps_16x16_mate-system-log.png: logview.svg - inkscape -z $^ --export-area=303:65:319:81 -w=16 -h=16 -e=$@ + $(INKSCAPE) -z $^ --export-area=303:65:319:81 -w=16 -h=16 -e=$@ hicolor_apps_22x22_mate-system-log.png: logview.svg - inkscape -z $^ --export-area=303:101:325:123 -w=22 -h=22 -e=$@ + $(INKSCAPE) -z $^ --export-area=303:101:325:123 -w=22 -h=22 -e=$@ hicolor_apps_32x32_mate-system-log.png: logview.svg - inkscape -z $^ --export-area=304:142:336:174 -w=32 -h=32 -e=$@ + $(INKSCAPE) -z $^ --export-area=304:142:336:174 -w=32 -h=32 -e=$@ hicolor_apps_48x48_mate-system-log.png: logview.svg - inkscape -z $^ --export-area=296:202:344:250 -w=48 -h=48 -e=$@ + $(INKSCAPE) -z $^ --export-area=296:202:344:250 -w=48 -h=48 -e=$@ hicolor_apps_256x256_mate-system-log.png: logview.svg - inkscape -z $^ --export-area=33:11:289:267 -w=256 -h=256 -e=$@ + $(INKSCAPE) -z $^ --export-area=33:11:289:267 -w=256 -h=256 -e=$@ noinst_DATA = \ logview.svg \ @@ -70,7 +70,7 @@ gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor install-data-hook: update-icon-cache uninstall-hook: update-icon-cache -update-icon-cache: $(public_icons) +update-icon-cache: @-if test -z "$(DESTDIR)"; then \ echo "Updating Gtk icon cache."; \ $(gtk_update_icon_cache); \ |