# HG changeset patch # User nkeynes # Date 1218152182 0 # Node ID e12b7daf013577cb7d86f6ccb6269525e528c2e4 # Parent d894188b503d1614233f4d9a44511821ff745c24 Only install the .png pixmaps in a make install (.icns are OS X bundle only) --- a/Makefile.am Thu Aug 07 23:35:03 2008 +0000 +++ b/Makefile.am Thu Aug 07 23:36:22 2008 +0000 @@ -21,7 +21,7 @@ @$(NORMAL_INSTALL) if test -d $(srcdir)/pixmaps; then \ $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \ - for pixmap in $(srcdir)/pixmaps/*; do \ + for pixmap in $(srcdir)/pixmaps/*.png; do \ if test -f $$pixmap; then \ $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \ fi \ --- a/Makefile.in Thu Aug 07 23:35:03 2008 +0000 +++ b/Makefile.in Thu Aug 07 23:36:22 2008 +0000 @@ -766,7 +766,7 @@ @$(NORMAL_INSTALL) if test -d $(srcdir)/pixmaps; then \ $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \ - for pixmap in $(srcdir)/pixmaps/*; do \ + for pixmap in $(srcdir)/pixmaps/*.png; do \ if test -f $$pixmap; then \ $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \ fi \