Is it that behavior documented?
If so, then it's probably not reasonable to change it.
I've Cc'd the automake list, because some of automake's
rules use bison through $(YACC) -- though I'll bet they
all use it in yacc-compatible mode.
Akim Demaille <[EMAIL PROTECTED]> writes:
| Hi People,
|
| I consider this to be a bug in bison:
|
| /tmp % mkdir src nostromo 16:31
| /tmp % cp ~/src/bison/tests/calc.y src nostromo 16:31
| /tmp % mkdir build && cd build nostromo 16:31
| /tmp/build % bison ../src/calc.y nostromo 16:31
| /tmp/build % cd .. nostromo 16:31
| /tmp % ls -l build src nostromo 16:31
| build:
| total 0
|
| src:
| total 32
| -rw-r--r-- 1 akim lrde 27553 oct 2 16:31 calc.tab.c
| -rw-r--r-- 1 akim lrde 3335 oct 2 16:31 calc.y
|
|
| Would it be safe to change this behavior to something more reasonable?
| Do you think some people depend upon this?
|
| Akim