Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com From: "Hannu E K Nevalainen (garbage mail)" To: Subject: RE: Path problems in Makefile Date: Thu, 17 Apr 2003 20:22:00 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal In-Reply-To: <000f01c30506$103928f0$6701a8c0@Self> X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Importance: Normal > From: cygwin-owner AT cygwin DOT com [mailto:cygwin-owner AT cygwin DOT com]On Behalf > Of Justin Birtwell > When referenced in the script all the '\' are removed. '\' is "the escape character", compare to how it is used in C/C++ code. Try something similar to: -- $ DEV_ROOT='C:\gnu\emacs-21.2\workspaces' $ echo $DEV_ROOT C:\gnu\emacs-21.2\workspaces -- $ DEV_ROOT=C:\\gnu\\emacs-21.2\\workspaces $ echo $DEV_ROOT C:\gnu\emacs-21.2\workspaces -- $ DEV_ROOT=`cygpath -u 'C:\gnu\emacs-21.2\workspaces'` $ echo $DEV_ROOT /cygdrive/c/gnu/emacs-21.2/workspaces -- ... where using the last probably will be the least error prone (my guess). /Hannu E K Nevalainen, Mariefred, Sweden --END OF MESSAGE-- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/