bug-make
[Top][All Lists]
Advanced

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

Bug under Win32 with gnumake 3.79.1 and 3.77


From: Hauke Jans
Subject: Bug under Win32 with gnumake 3.79.1 and 3.77
Date: Tue, 11 Sep 2001 17:19:44 +0200

        Dear Maintainers of gnumake.
I think i found a bug under win32 of gnumake
which did bite me.

Version tested: 3.77 and 3.79.1, compiled with msvc++.

Problem:

X=$(wildcard c:\\*.*)
does not macht anything under win32 while
X=$(wildcard c:/*.*)
does match the given files.
This is a problem for me, since make does
use the "\\" as the path separator internally
when handling files, so we did in our makefiles
under win32.

Workaround:
I Used:

X_PATH=c:\\temp\\
X=$(subst /,\\, $(wildcard $(subst \\,/,$(X_PATH))*.*))

in my makefile.
Since this solution looks somewhat ugly,
could someone please consider fixing this bug?


        Thanx in advance

                Hauke Jans

-- 
S.E.S.A. Software und Systeme AG
Hauke Jans
Stolberger Straße 374
D-50933 Köln
Phone +49 (0)221/485-1160
Fax   +49 (0)221/485-1170
Email address@hidden
WWW   www.sesa.de

Attachment: hcj.vcf
Description: Card for Hauke Jans


reply via email to

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