[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug #17521] target-specific variables inluding semicolon
From: |
anonymous |
Subject: |
[bug #17521] target-specific variables inluding semicolon |
Date: |
Fri, 25 Aug 2006 08:43:53 +0000 |
User-agent: |
Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; ja) Opera 8.54 |
URL:
<http://savannah.gnu.org/bugs/?17521>
Summary: target-specific variables inluding semicolon
Project: make
Submitted by: None
Submitted on: 金曜日 2006年08月25日 at 08:43 UTC
Severity: 3 - Normal
Item Group: Bug
Status: None
Privacy: Public
Assigned to: None
Open/Closed: Open
Component Version: 3.81
Operating System: MS Windows
Fixed Release: None
_______________________________________________________
Details:
$ make --version
GNU Make 3.81
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
This program built for i686-pc-cygwin
$
$ cat Makefile
test: HELLO = 'hello \
world'
test2: HELLO2 = 'hello; \
world'
test :
@echo $(HELLO)
test2 :
@echo $(HELLO2)
$ make test
hello world
$ make test2
hello; \
world
----------------
I expect 'hello; world'.
Regards.
_______________________________________________________
Reply to this item at:
<http://savannah.gnu.org/bugs/?17521>
_______________________________________________
Message sent via/by Savannah
http://savannah.gnu.org/
- [bug #17521] target-specific variables inluding semicolon,
anonymous <=