]> git.ipfire.org Git - thirdparty/squid.git/blob - scripts/convert.configure.to.os2
SourceFormat Enforcement
[thirdparty/squid.git] / scripts / convert.configure.to.os2
1 #!/bin/sh
2 #
3 ## Copyright (C) 1996-2015 The Squid Software Foundation and contributors
4 ##
5 ## Squid software is distributed under GPLv2+ license and includes
6 ## contributions from numerous individuals and organizations.
7 ## Please see the COPYING and CONTRIBUTORS files for details.
8 ##
9
10 if [ ! -f configure ]; then
11 echo You need to run this script from the directory where the \"configure\" script resides
12 exit
13 fi
14
15 cp configure configure~
16 sed -e s/IFS=\"\${IFS}:\"/IFS=\"\${IFS}\;\"/g -e s/\$ac_dir\\/\$ac_word/\$ac_dir\\/\$ac_word.exe/g < configure~ > configure
17
18 rm configure~
19