~ubuntu-branches/ubuntu/trusty/aspell/trusty

« back to all changes in this revision

Viewing changes to compile

  • Committer: Bazaar Package Importer
  • Author(s): Brian Nelson
  • Date: 2011-07-28 23:27:13 UTC
  • mfrom: (0.1.10 sid)
  • Revision ID: james.westby@ubuntu.com-20110728232713-wdlk22mddbkvax7d
Tags: 0.60.7~20110707-1
* New upstream snapshot 0.60.7-20110707
  - Removed 06_null_input_segfault_fix and 11_special_chars patches as
    they've been applied upstream
  - Fixes unexpected Ctrl-C quits program (Closes: #600214)
  - Partial support for recognizing the Unicode apostrophe
    (Closes: #533378)
* Updated policy to 3.9.2, no changes necessary

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh
2
2
# Wrapper for compilers which do not understand `-c -o'.
3
3
 
4
 
scriptversion=2009-04-28.21; # UTC
 
4
scriptversion=2009-10-06.20; # UTC
5
5
 
6
6
# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009  Free Software
7
7
# Foundation, Inc.
124
124
ret=$?
125
125
 
126
126
if test -f "$cofile"; then
127
 
  mv "$cofile" "$ofile"
 
127
  test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
128
128
elif test -f "${cofile}bj"; then
129
 
  mv "${cofile}bj" "$ofile"
 
129
  test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
130
130
fi
131
131
 
132
132
rmdir "$lockdir"