]> git.ipfire.org Git - thirdparty/squid.git/blame - scripts/convert.configure.to.os2
SourceFormat Enforcement
[thirdparty/squid.git] / scripts / convert.configure.to.os2
CommitLineData
3c2a9d0c 1#!/bin/sh
a151895d 2#
bde978a6 3## Copyright (C) 1996-2015 The Squid Software Foundation and contributors
a151895d
AJ
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##
3c2a9d0c 9
10if [ ! -f configure ]; then
11 echo You need to run this script from the directory where the \"configure\" script resides
12 exit
13fi
14
15cp configure configure~
16sed -e s/IFS=\"\${IFS}:\"/IFS=\"\${IFS}\;\"/g -e s/\$ac_dir\\/\$ac_word/\$ac_dir\\/\$ac_word.exe/g < configure~ > configure
17
18rm configure~
19