2008-10-09 Sven Neumann <sven@gimp.org> * data/images/Makefile.am * data/images/gimp-devel-logo.png: added 128x128 version of wilber-devel.png. * app/dialogs/about-dialog.c (about_dialog_load_logo): use gimp-devel-logo.png for unstable releasees. svn path=/trunk/; revision=27199
16 lines
260 B
Makefile
16 lines
260 B
Makefile
## Makefile.am for gimp/data/images
|
|
|
|
imagedatadir = $(gimpdatadir)/images
|
|
|
|
if GIMP_UNSTABLE
|
|
GIMP_LOGO = gimp-devel-logo.png
|
|
else
|
|
GIMP_LOGO = gimp-logo.png
|
|
endif
|
|
|
|
imagedata_DATA = \
|
|
$(GIMP_LOGO) \
|
|
gimp-splash.png \
|
|
wilber.png
|
|
|
|
EXTRA_DIST = $(imagedata_DATA)
|