diff options
author | Ian Lynagh <igloo@earth.li> | 2009-12-01 13:07:41 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-12-01 13:07:41 +0000 |
commit | 22f78dd456cdf6d6c123556e3f715d008ecd86cd (patch) | |
tree | 52ed15f85366cb47b5768bab37e96839b15e7fcf /configure.ac | |
parent | 01d63b084d9115746772876e54edacd82028d35c (diff) | |
download | haskell-22f78dd456cdf6d6c123556e3f715d008ecd86cd.tar.gz |
Look for sed as gsed first
Solaris's sed apparently doesn't understand [:space:]
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6792491590..c249b9adbc 100644 --- a/configure.ac +++ b/configure.ac @@ -559,7 +559,7 @@ AC_PROG_LN_S dnl ** Find the path to sed -AC_PATH_PROG(SedCmd,sed) +AC_PATH_PROGS(SedCmd,gsed sed,sed) dnl ** check for time command |