Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: yodl 2.11 and vpath problem



On Wed, Feb 27, 2008 at 05:27:19PM +0000, Peter Stephenson wrote:
> -I$(srcdir) seems to be pretty reasonable to me, if that works.

This patch, which I am committing, perhaps illustrates the issue better
than my description.

Index: Doc/Makefile.in
===================================================================
RCS file: /cvsroot/zsh/zsh/Doc/Makefile.in,v
retrieving revision 1.40
diff -u -r1.40 Makefile.in
--- Doc/Makefile.in	1 Feb 2008 11:31:38 -0000	1.40
+++ Doc/Makefile.in	27 Feb 2008 18:19:38 -0000
@@ -122,8 +122,8 @@
 	  *) target=$(sdir)/$@ ;; \
 	esac; \
 	case '$(YODL)' in :*) touch $$target ;; *) \
-	    echo $(YODL) -o $$target -I$(sdir) -w zman.yo version.yo $< ; \
-	    $(YODL) -I$(sdir) -w zman.yo version.yo $< | \
+	    echo $(YODL) -o $$target -I$(sdir):. -w zman.yo version.yo $< ; \
+	    $(YODL) -I$(sdir):. -w zman.yo version.yo $< | \
 	      sed -e '1s/\\-/-/g' -e '/^\.'\''/d' -e 's/\(\\fB\)*'\''/\1\\\&'\''/' > $$target \
 	;; esac; \
 



Messages sorted by: Reverse Date, Date, Thread, Author