[ Date Prev][ Date Next][ Thread Prev][ Thread Next][ Date Index][ Thread Index]
PATCH: Typo in doc/GNUmakefile.inc.in
- To: vsipl++@xxxxxxxxxxxxxxxx
- Subject: PATCH: Typo in doc/GNUmakefile.inc.in
- From: Stefan Seefeld <stefan@xxxxxxxxxxxxxxxx>
- Date: Fri, 23 Dec 2005 11:24:58 -0500
The attached patch fixes a typo in the 'install' target rule.
Committed.
Regards,
Stefan
Index: doc/GNUmakefile.inc.in
===================================================================
RCS file: /home/cvs/Repository/vpp/doc/GNUmakefile.inc.in,v
retrieving revision 1.10
diff -u -r1.10 GNUmakefile.inc.in
--- doc/GNUmakefile.inc.in 14 Dec 2005 17:30:31 -0000 1.10
+++ doc/GNUmakefile.inc.in 23 Dec 2005 16:23:27 -0000
@@ -69,13 +69,13 @@
fi; \
if test -d doc/$$dir/html/images; then \
$(INSTALL) -d $(docdir)/html/$$dir/images; \
- $(INSTALL_DATA) doc/$$dir/images/*.png \
+ $(INSTALL_DATA) doc/$$dir/html/images/*.png \
$(docdir)/html/$$dir/images; \
fi; \
if test -d doc/$$dir/html/images/callouts; then \
$(INSTALL) -d \
$(docdir)/html/$$dir/images/callouts; \
- $(INSTALL_DATA) doc/$$dir/images/callouts/*.png \
+ $(INSTALL_DATA) doc/$$dir/html/images/callouts/*.png \
$(docdir)/html/$$dir/images/callouts; \
fi; \
done
|