From 9e06ff428c7eb4e51c285ee76078f5cb3a628f28 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Sun, 27 Sep 2015 12:47:13 +0200 Subject: [PATCH] cursors: fix the contents of the gimp-color-picker-cursors resource file Due to a typo we included all cursors, not only the color picker cursor. Use the right Makefile.am variable to fix this. Also include the cursor's raw PNG file, which is needed for simplifying OS X specific code, see bug #753175. --- cursors/Makefile.am | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cursors/Makefile.am b/cursors/Makefile.am index 32403338be..aef058e400 100644 --- a/cursors/Makefile.am +++ b/cursors/Makefile.am @@ -116,10 +116,15 @@ gimp-color-picker-cursors.gresource.xml: $(CURSOR_IMAGES) Makefile.am echo '' > $@; \ echo '' >> $@; \ echo ' ' >> $@; \ - for image in $(CURSOR_IMAGES); do \ + for image in $(COLOR_PICKER_IMAGES); do \ echo " $$image" >> $@; \ done; \ echo ' ' >> $@; \ + echo ' ' >> $@; \ + for image in $(COLOR_PICKER_IMAGES); do \ + echo " $$image" >> $@; \ + done; \ + echo ' ' >> $@; \ echo '' >> $@ ) gimp-color-picker-cursors.c: gimp-color-picker-cursors.gresource.xml