Mercurial > pidgin.yaz
view pixmaps/Makefile.mingw @ 13828:71a6a6b22149
[gaim-migrate @ 16273]
This fixes a crash when gaim_circ_buffer_destroy is called with a NULL
circular buffer. I'm using g_return_if_fail so it still reports a
warning, because it is possible that the circumstance in question
shouldn't even come up. If that isn't the case, we can make it fail
silently.
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Sat, 17 Jun 2006 23:22:30 +0000 |
parents | bc494c4a3991 |
children |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for win32 (mingw) version of Gaim pixmaps # datadir = ../win32-install-dir include ./Makefile.am install: if test '$(SUBDIRS)'; then \ list='$(SUBDIRS)'; for subdir in $$list; do \ $(MAKE) -C $$subdir -f Makefile.mingw install; \ done; \ fi; if test '$(gaimbuttonpix_DATA)'; then \ mkdir -p $(gaimbuttonpixdir); \ cp $(gaimbuttonpix_DATA) $(gaimbuttonpixdir); \ fi; if test '$(gaimdialogpix_DATA)'; then \ mkdir -p $(gaimdialogpixdir); \ cp $(gaimdialogpix_DATA) $(gaimdialogpixdir); \ fi; if test '$(gaimiconpix_DATA)'; then \ mkdir -p $(gaimiconpixdir); \ cp $(gaimiconpix_DATA) $(gaimiconpixdir); \ fi; if test '$(gaimdistpix_DATA)'; then \ mkdir -p $(gaimdistpixdir); \ cp $(gaimdistpix_DATA) $(gaimdistpixdir); \ fi; if test '$(distpixmap_DATA)'; then \ mkdir -p $(distpixmapdir); \ cp $(distpixmap_DATA) $(distpixmapdir); \ fi;