Incidentally, shouldn't we emulate realpath's failures in
func_realpath on systems that don't have realpath? AFAIK, realpath
fails if the file does not exist, so perhaps we should stat the result
of abspath on such systems and return an NULL if it fails.
WDYT?
__
Follow-up Comment #3, bug #16362 (project make):
The following patch fixes this bug:
--- function.c~02006-04-01 12:36:40.0 +0300
+++ function.c 2006-05-27 15:58:26.984375000 +0300
@@ -1589,12 +1589,25 @@ func_shell (char *o, char **argv, const
int pid;
#ifndef __MSDOS__
+