[bug #21231] $(wildcard ) function sometimes fails very strangely

2007-11-26 Thread Jun Chen
Follow-up Comment #2, bug #21231 (project make): Thank you for your comment on Friday 11/23/07. As you said, putting out.txt in a subdir does not exhibit the problem -- that's right. However, I encountered that $(wildcard ) problem in my real-world makefiles when out.txt(other name may be used th

[bug #21231] $(wildcard ) function sometimes fails very strangely

2007-10-02 Thread Jun Chen
URL: Summary: $(wildcard ) function sometimes fails very strangely Project: make Submitted by: chjfth Submitted on: Wednesday 10/03/2007 at 09:51 Severity: 3 - Normal It

[bug #18641] GNUmake 3.81, $(error ) sometimes unable to stop make process

2007-01-29 Thread Jun Chen
Follow-up Comment #3, bug #18641 (project make): Thanks a lot for your reply, Paul. You catch my meaning right. I believe that the "include warning suppression" is expected for nearly every person using GNUmake. People use the ``gcc -M' technique mentioned in GNU make manual to generate .d files

[bug #18755] exported var-define and var-define from command line should appear in $(shell ) env

2007-01-10 Thread Jun Chen
URL: Summary: exported var-define and var-define from command line should appear in $(shell ) env Project: make Submitted by: chjfth Submitted on: Thursday 01/11/07 at 10:23 Severity

[bug #18641] GNUmake 3.81, $(error ) sometimes unable to stop make process

2007-01-03 Thread Jun Chen
Follow-up Comment #1, bug #18641 (project make): [2007-01-04] Well, with the help of Martin Dorey, I've got to know that this bug has nothing to do with make's $(error ) function, but a make behavior change for ``-include '' directive. Since I used ``-include $(_p_SubprjsMade)'' instead of ``inc

[bug #17245] $(notdir foo/) should return . instead of blank

2006-12-30 Thread Jun Chen
Follow-up Comment #1, bug #17245 (project make): Well, if you need such functionality, you can write your own function: MyNotDir_1 = $(if $(patsubst %/,,$1),$(notdir $1),.)#OK MyNotDir = $(foreach v,$1,$(call MyNotDir_1,$v)) Now, MyNotDir acts as you expect. I've tested it on make 3.

[bug #18641] GNUmake 3.81, $(error ) sometimes unable to stop make process

2006-12-30 Thread Jun Chen
URL: Summary: GNUmake 3.81, $(error ) sometimes unable to stop make process Project: make Submitted by: chjfth Submitted on: Saturday 12/30/2006 at 22:03 Severity: 3 - Normal