tramp-devel
[Top][All Lists]
Advanced

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

Re: [Eli Tziperman] compiling tramp from CVS


From: Michael Albinus
Subject: Re: [Eli Tziperman] compiling tramp from CVS
Date: Fri, 09 Jan 2004 16:51:29 +0100
User-agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/20.7 (hpux)

Kai Grossjohann <address@hidden> writes:

> Not sure what to make of this.  Hm.  Michael, do you know?
>
> I'll suggest him to set PATH appropriately.

Hmm. The autoconf macro AC_CHECK_PROG checks for executables in the
$PATH only. The following patch should do the trick:

address@hidden:[1156] diff -u aclocal.m4.sv aclocal.m4
--- aclocal.m4.sv       Sun Nov  2 22:44:49 2003
+++ aclocal.m4  Fri Jan  9 16:23:29 2004
@@ -57,7 +57,7 @@
       AC_MSG_ERROR([emacs not found])
     fi
   else
-    AC_CHECK_PROG([EMACS_test_emacs], [$EMACS], [$EMACS], [no])
+    AC_CHECK_PROG([EMACS_test_emacs], [$EMACS], [$EMACS], [no], [$PATH:/])
     if test "${EMACS_test_emacs}" = no; then
       AC_MSG_ERROR([$EMACS not found])
     fi

Eli, please report whether it works for you. I'll commit it to CVS then.

> Kai

Best regards, Michael.





reply via email to

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