~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to scripts/convert.configure.to.os2

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2006-11-11 10:32:06 UTC
  • Revision ID: james.westby@ubuntu.com-20061111103206-f3p0r9g0vq44rp3r
Tags: upstream-3.0.PRE5
ImportĀ upstreamĀ versionĀ 3.0.PRE5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
if [ ! -f configure ]; then
 
4
  echo You need to run this script from the directory where the \"configure\" script resides
 
5
  exit
 
6
fi
 
7
 
 
8
cp configure configure~
 
9
sed -e s/IFS=\"\${IFS}:\"/IFS=\"\${IFS}\;\"/g -e s/\$ac_dir\\/\$ac_word/\$ac_dir\\/\$ac_word.exe/g < configure~ > configure
 
10
 
 
11
rm configure~
 
12