Fixed placement of png files on "make dist"

This commit is contained in:
Pavel Roskin 2000-08-15 23:42:37 +00:00
parent 4dcf11311b
commit d4c830ee6a
2 changed files with 7 additions and 1 deletions

View File

@ -5,6 +5,7 @@
* doc-gnome/Makefile.in: Fixed some abuses of $(srcdir) * doc-gnome/Makefile.in: Fixed some abuses of $(srcdir)
Removed all XVIEW-related stuff Removed all XVIEW-related stuff
Fixed placement of png files on "make dist"
* doc/mc.1.in: Updated info about the internal editor * doc/mc.1.in: Updated info about the internal editor

View File

@ -252,7 +252,12 @@ distdir: $(DISTFILES)
distcopy: distcopy:
mkdir $(top_srcdir)/mc-$(VERSION)/doc-gnome/C/figs mkdir $(top_srcdir)/mc-$(VERSION)/doc-gnome/C/figs
for I in $(DISTDOCS) $(DISTFIGS); do $(CP) $(top_srcdir)/doc-gnome/C/$$I $(top_srcdir)/mc-$(VERSION)/doc-gnome/C; done for I in $(DISTDOCS); do\
$(CP) $(top_srcdir)/doc-gnome/C/$$I $(top_srcdir)/mc-$(VERSION)/doc-gnome/C; \
done
for I in $(DISTFIGS); do \
$(CP) $(top_srcdir)/doc-gnome/C/$$I $(top_srcdir)/mc-$(VERSION)/doc-gnome/C/figs; \
done
info-am: info-am:
info: info-am info: info-am