Dave Korn ha scritto:
Angelo Graziosi wrote:
...are the files with an '*' in their names, like libstdc++*-gdb.py,
allowed on Cygwin?
No, it's a glob match, the makefile expects there to be something to match
that pattern but there isn't so the shell returns it verbatim instead of
expanding it.
Do you mean that the '*' there is a wild character? Hmm... on GNU/Linux
the file installed is _exactly_ libstdc++*-gdb.py,
$ ls -lrt /usr/local/gfortran/lib/*.py
-rw-r--r-- 1 root root 2308 2009-07-25 18:31
/usr/local/gfortran/lib/libstdc++*-gdb.py
i.e. the '*' is used like a '+', '-', 'a'...
Cheers,
Angelo.