| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sources.redhat.com/ml/#faqs> |
| 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)" <garbage_collector AT telia DOT com> |
| To: | <cygwin AT cygwin DOT com> |
| Subject: | RE: Path problems in Makefile |
| Date: | Thu, 17 Apr 2003 20:22:00 +0200 |
| Message-ID: | <NGBBLLIAMFLGJEOAJCCEOEIDCOAA.garbage_collector@telia.com> |
| MIME-Version: | 1.0 |
| 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/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |