Mercurial > pidgin
view pixmaps/Makefile.mingw @ 6352:3381f1a85d8f
[gaim-migrate @ 6851]
When being added to someone's buddy list and clicking Authorize, and then
clicking the Add button on the proceeding dialog to add them to your list,
the account drop-down menu would always show the first signed-on account,
instead of the one that was added that you authorized. Did that make sense?
Well, it's fixed either way.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Fri, 01 Aug 2003 03:43:47 +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;