~ubuntu-branches/ubuntu/saucy/totem-pl-parser/saucy-proposed

« back to all changes in this revision

Viewing changes to compile

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-01-26 20:52:06 UTC
  • mfrom: (1.4.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100126205206-mj1kg7e81c9f0zgv
Tags: 2.29.1-0ubuntu1
* New upstream release:
  - Add introspection support
  - Remove GTK+ dependency
  - Remove deprecated symbols
  - Add more metadata to XSPF playlist saving
  - Fix compilation on *BSDs
* debian/watch: update to take unstable version
* debian/control.in:
  - add Vcs-Bzr tag
  - add gobject-introspection, libgirepository1.0-dev and gir1.0-glib-2.0
    build-dep
  - remove libgtk2.0-dev build-dep
  - bump package revision as soname bumped
  - add gir1.0-totemplparser-1.0 package
* debian/rules:
  - bump makeshlibs args to new revision
  - call dh_girepository
* debian/libtotem-plparser17.install:
  - renamed from debian/libtotem-plparser12.install
* add debian/gir1.0-totemplparser-1.0.install package
* debian/libtotem-plparser-dev.install:
  - add gir file
* add debian/patches/01_fix_gir_file.patch:
  - fix gir and typelib file to have good release version
* add debian/patches/90autoreconf.patch to include previous patch

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"