From: Reiner Steib Date: Tue, 21 Feb 2006 18:13:26 +0000 (+0000) Subject: * make.bat (:etc): Also consider images in images/mail and X-Git-Url: https://cgit.sxemacs.org/?a=commitdiff_plain;h=a108b858aa736da78e13b835badeb16a46166a9a;p=gnus * make.bat (:etc): Also consider images in images/mail and images/. * etc/Makefile.in (install, uninstall): Also consider images in images/mail and images/. --- diff --git a/ChangeLog b/ChangeLog index 0eb460d39..824f7134f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2006-02-21 Reiner Steib + * make.bat (:etc): Also consider images in images/mail and + images/. + + * etc/Makefile.in (install, uninstall): Also consider images in + images/mail and images/. + * etc/images/connect.xpm, etc/images/contact.xpm, etc/images/delete.xpm, etc/images/describe.xpm, etc/images/disconnect.xpm, etc/images/exit.xpm, diff --git a/etc/Makefile.in b/etc/Makefile.in index 56ee05dd4..ff9967f60 100644 --- a/etc/Makefile.in +++ b/etc/Makefile.in @@ -20,9 +20,12 @@ install: echo " $(INSTALL_DATA) $$p $(etcdir)/$$p"; \ $(INSTALL_DATA) $$p $(etcdir)/$$p; \ done - $(SHELL) $(top_srcdir)/mkinstalldirs $(etcdir)/images/gnus + $(SHELL) $(top_srcdir)/mkinstalldirs $(etcdir)/images/gnus $(etcdir)/images/mail cd $(srcdir) \ - && for p in images/gnus/*.xpm images/gnus/*.pbm images/gnus/*.xbm images/gnus/x-splash; do \ + && for p in images/gnus/*.xpm images/gnus/*.pbm images/gnus/*.xbm \ + images/mail/*.xpm images/mail/*.pbm \ + images/*.xpm images/*.pbm \ + images/gnus/x-splash; do \ echo " $(INSTALL_DATA) $$p $(etcdir)/$$p"; \ $(INSTALL_DATA) $$p $(etcdir)/$$p; \ done @@ -36,7 +39,10 @@ install: uninstall: rm -f $(etcdir)/gnus-tut.txt cd $(srcdir) \ - && for p in images/gnus/*.xpm images/gnus/*.pbm images/gnus/*.xbm images/gnus/x-splash; do \ + && for p in images/gnus/*.xpm images/gnus/*.pbm images/gnus/*.xbm \ + images/mail/*.xpm images/mail/*.pbm \ + images/*.xpm images/*.pbm \ + images/gnus/x-splash; do \ rm -f "$(etcdir)/$$p"; \ done rmdir $(etcdir)/images/gnus 2> /dev/null || true diff --git a/make.bat b/make.bat index 672284b6a..fe76a743b 100644 --- a/make.bat +++ b/make.bat @@ -187,9 +187,14 @@ if not exist %GNUS_ETC_DIR%\gnus\nul mkdir %GNUS_ETC_DIR%\gnus xcopy /R /Q /Y .\gnus\* %GNUS_ETC_DIR%\gnus\ if ErrorLevel 1 set ERROR=%ERROR%,copy-etc-gnus-* if not exist %GNUS_ETC_DIR%\images\nul mkdir %GNUS_ETC_DIR%\images +xcopy /R /Q /Y .\images\*.??? %GNUS_ETC_DIR%\images +if ErrorLevel 1 set ERROR=%ERROR%,copy-etc-images-* if not exist %GNUS_ETC_DIR%\images\gnus\nul mkdir %GNUS_ETC_DIR%\images\gnus xcopy /R /Q /Y .\images\gnus\* %GNUS_ETC_DIR%\images\gnus\ if ErrorLevel 1 set ERROR=%ERROR%,copy-etc-images-gnus-* +if not exist %GNUS_ETC_DIR%\images\mail\nul mkdir %GNUS_ETC_DIR%\images\mail +xcopy /R /Q /Y .\images\mail\* %GNUS_ETC_DIR%\images\mail\ +if ErrorLevel 1 set ERROR=%ERROR%,copy-etc-images-mail-* if not exist %GNUS_ETC_DIR%\images\smilies\nul mkdir %GNUS_ETC_DIR%\images\smilies xcopy /R /Q /Y .\images\smilies\* %GNUS_ETC_DIR%\images\smilies\ if ErrorLevel 1 set ERROR=%ERROR%,copy-etc-images-smilies-*