diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-07-09 18:53:23 -0600 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-07-09 18:53:23 -0600 |
commit | 4fae29531c16df28685ca0530fbc0162b7882cff (patch) | |
tree | b838d208af69475f68e1bba212433f5f85b2d005 /configure | |
parent | 1c2efabda503cc1b668b492ff553f18179cdb429 (diff) |
whitespace
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -2,17 +2,17 @@ name='configure' # Luke's configureation script #version='1.0' # Copyright (C) 2009 Luke Shumaker -# +# # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. # If not, see <http://www.gnu.org/licenses>. @@ -70,14 +70,14 @@ echo '#!/bin/sed -f' > var.sed for var in $vars; do var1="_$var" val=${!var1} - + # GNU bash optimized version - var=${var//:/\\:} + var=${var//:/\\:} val=${val//:/\\:} # POSIX version #var=`echo "$var" | sed 's@:@\\:@g'` #val=`echo "$val" | sed 's@:@\\:@g'` - + echo "s:@$var@:$val:g" >> var.sed done |