automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[mini-patch] Don't forget about cygnus when setting YLWRAP


From: Tim Van Holder
Subject: [mini-patch] Don't forget about cygnus when setting YLWRAP
Date: Sat, 16 Jun 2001 21:30:17 +0200

A small oversight on my part; with cygnus-mode, we look for
auxiliary files in the über-dir, not $top_srcdir.

Index: automake.in
===================================================================
RCS file: /cvs/automake/automake/automake.in,v
retrieving revision 1.1139
diff -u -u -r1.1139 automake.in
--- automake.in 2001/06/15 01:25:11     1.1139
+++ automake.in 2001/06/16 19:27:40
@@ -5041,7 +5041,9 @@
     }
     else
     {
-       &define_variable ('YLWRAP', '$(top_srcdir)/ylwrap');
+       my $ylwrapdir = '$(top_srcdir)';
+       $ylwrapdir .= '/..' if $cygnus_mode;
+       &define_variable ('YLWRAP', $ylwrapdir . '/ylwrap');
     }
 }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]