[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

makefile patch.

From: C. Scott Ananian <cananian_at_lesser-magoo.lcs.mit.edu>
Date: 2001-08-20 19:21:40 CEST

The 'make doc-dvi' target is broken: it puts the .dvi files in the
subversion root directory instead of in the same directory as the source
.dvi file. Appended is a patch to fix this (my first patch! whee!).
 --s

NORAD shotgun security AK-47 Suharto DES Semtex Chechnya AP plastique
genetic MI6 colonel Clinton DC Flintlock Treasury assassinate Boston
              ( http://lesser-magoo.lcs.mit.edu/~cananian )

Index: Makefile.in
===================================================================
RCS file: /usr/local/tigris/data/helm/cvs/repository/subversion/Makefile.in,v
retrieving revision 1.27
diff -u -p -r1.27 Makefile.in
--- Makefile.in 2001/08/15 00:23:24 1.27
+++ Makefile.in 2001/08/20 17:20:14
@@ -203,7 +203,7 @@ dist:
         $(MAKEINFO) -I `dirname $(top_srcdir)/$<` -o $@ $<
 
 .texi.dvi:
- $(TEXI2DVI) -I `dirname $(top_srcdir)/$<` $<
+ cd `dirname $(top_srcdir)/$<` ; $(TEXI2DVI) -I . `basename $<`
 
 .texi.txt:
         $(MAKEINFO) -I `dirname $(top_srcdir)/$<` --no-headers -o $@ $<

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:36:36 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.