mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
Fixed placement of png files on "make dist"
This commit is contained in:
parent
4dcf11311b
commit
d4c830ee6a
@ -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
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user