sgl
changeset 11:b925dabd4e96
fixed whitespace stripping from link-with options
author | John Tsiombikas <nuclear@siggraph.org> |
---|---|
date | Sat, 14 May 2011 09:06:46 +0300 |
parents | 1532e43bf858 |
children | bf34fa677960 |
files | configure |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/configure Sat May 14 08:59:37 2011 +0300 1.2 +++ b/configure Sat May 14 09:06:46 2011 +0300 1.3 @@ -5,7 +5,7 @@ 1.4 1.5 extract() 1.6 { 1.7 - grep "$2:" $1 | sed "s/^.*$2: \?\(.*\) \?\*\//\1/" 1.8 + grep "$2:" $1 | sed "s/^.*$2:\(.*\)\*\//\1/" | awk '{ print $1 }' 1.9 } 1.10 1.11 get_depline()