~ubuntu-branches/ubuntu/gutsy/metacity/gutsy

« back to all changes in this revision

Viewing changes to compile

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-02-27 11:46:52 UTC
  • mfrom: (1.2.24 upstream)
  • Revision ID: james.westby@ubuntu.com-20070227114652-mxn9hllh4ioyvx1p
Tags: 1:2.17.8-0ubuntu1
* New upstream version:
  - Change icon in the "kill window" dialog because the old
    one was removed from GNOME
  - refactor the code which handles mouse events on the title bar
  - Add MAINTAINERS to EXTRA_DIST
* debian/control.in:
  - package maintained by the Ubuntu Desktop Team

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh
 
2
 
2
3
# Wrapper for compilers which do not understand `-c -o'.
3
4
 
4
 
scriptversion=2005-05-14.22
5
 
 
6
 
# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
 
5
# Copyright 1999, 2000 Free Software Foundation, Inc.
7
6
# Written by Tom Tromey <tromey@cygnus.com>.
8
7
#
9
8
# This program is free software; you can redistribute it and/or modify
18
17
#
19
18
# You should have received a copy of the GNU General Public License
20
19
# along with this program; if not, write to the Free Software
21
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
20
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
21
 
23
22
# As a special exception to the GNU General Public License, if you
24
23
# distribute this file as part of a program that contains a
25
24
# configuration script generated by Autoconf, you may include it under
26
25
# the same distribution terms that you use for the rest of that program.
27
26
 
28
 
# This file is maintained in Automake, please report
29
 
# bugs to <bug-automake@gnu.org> or send patches to
30
 
# <automake-patches@gnu.org>.
31
 
 
32
 
case $1 in
33
 
  '')
34
 
     echo "$0: No command.  Try \`$0 --help' for more information." 1>&2
35
 
     exit 1;
36
 
     ;;
37
 
  -h | --h*)
38
 
    cat <<\EOF
39
 
Usage: compile [--help] [--version] PROGRAM [ARGS]
40
 
 
41
 
Wrapper for compilers which do not understand `-c -o'.
42
 
Remove `-o dest.o' from ARGS, run PROGRAM with the remaining
43
 
arguments, and rename the output as expected.
44
 
 
45
 
If you are trying to build a whole package this is not the
46
 
right script to run: please start by reading the file `INSTALL'.
47
 
 
48
 
Report bugs to <bug-automake@gnu.org>.
49
 
EOF
50
 
    exit $?
51
 
    ;;
52
 
  -v | --v*)
53
 
    echo "compile $scriptversion"
54
 
    exit $?
55
 
    ;;
56
 
esac
 
27
# Usage:
 
28
# compile PROGRAM [ARGS]...
 
29
# `-o FOO.o' is removed from the args passed to the actual compile.
 
30
 
 
31
# Usage statement added by Billy Biggs <vektor@dumbterm.net>.
 
32
if [ -z $1 ]; then
 
33
    echo "Wrapper for compilers which do not understand '-c -o'."
 
34
    echo "usage: compile PROGRAM [ARGS]..."
 
35
    echo "'-o FOO.o' is removed from the args passed to the actual compile."
 
36
    exit 1
 
37
fi
 
38
 
 
39
prog=$1
 
40
shift
57
41
 
58
42
ofile=
59
43
cfile=
60
 
eat=
61
 
 
62
 
for arg
63
 
do
64
 
  if test -n "$eat"; then
65
 
    eat=
66
 
  else
67
 
    case $1 in
68
 
      -o)
69
 
        # configure might choose to run compile as `compile cc -o foo foo.c'.
70
 
        # So we strip `-o arg' only if arg is an object.
71
 
        eat=1
72
 
        case $2 in
73
 
          *.o | *.obj)
74
 
            ofile=$2
75
 
            ;;
76
 
          *)
77
 
            set x "$@" -o "$2"
78
 
            shift
79
 
            ;;
80
 
        esac
81
 
        ;;
82
 
      *.c)
83
 
        cfile=$1
84
 
        set x "$@" "$1"
85
 
        shift
86
 
        ;;
87
 
      *)
88
 
        set x "$@" "$1"
89
 
        shift
90
 
        ;;
91
 
    esac
92
 
  fi
93
 
  shift
 
44
args=
 
45
while test $# -gt 0; do
 
46
   case "$1" in
 
47
    -o)
 
48
       # configure might choose to run compile as `compile cc -o foo foo.c'.
 
49
       # So we do something ugly here.
 
50
       ofile=$2
 
51
       shift
 
52
       case "$ofile" in
 
53
        *.o | *.obj)
 
54
           ;;
 
55
        *)
 
56
           args="$args -o $ofile"
 
57
           ofile=
 
58
           ;;
 
59
       esac
 
60
       ;;
 
61
    *.c)
 
62
       cfile=$1
 
63
       args="$args $1"
 
64
       ;;
 
65
    *)
 
66
       args="$args $1"
 
67
       ;;
 
68
   esac
 
69
   shift
94
70
done
95
71
 
96
72
if test -z "$ofile" || test -z "$cfile"; then
97
 
  # If no `-o' option was seen then we might have been invoked from a
98
 
  # pattern rule where we don't need one.  That is ok -- this is a
99
 
  # normal compilation that the losing compiler can handle.  If no
100
 
  # `.c' file was seen then we are probably linking.  That is also
101
 
  # ok.
102
 
  exec "$@"
 
73
   # If no `-o' option was seen then we might have been invoked from a
 
74
   # pattern rule where we don't need one.  That is ok -- this is a
 
75
   # normal compilation that the losing compiler can handle.  If no
 
76
   # `.c' file was seen then we are probably linking.  That is also
 
77
   # ok.
 
78
   exec "$prog" $args
103
79
fi
104
80
 
105
81
# Name of file we expect compiler to create.
106
 
cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
 
82
cofile=`echo $cfile | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
107
83
 
108
84
# Create the lock directory.
109
85
# Note: use `[/.-]' here to ensure that we don't use the same name
110
86
# that we are using for the .o file.  Also, base the name on the expected
111
87
# object file name, since that is what matters with a parallel build.
112
 
lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d
 
88
lockdir=`echo $cofile | sed -e 's|[/.-]|_|g'`.d
113
89
while true; do
114
 
  if mkdir "$lockdir" >/dev/null 2>&1; then
115
 
    break
116
 
  fi
117
 
  sleep 1
 
90
   if mkdir $lockdir > /dev/null 2>&1; then
 
91
      break
 
92
   fi
 
93
   sleep 1
118
94
done
119
95
# FIXME: race condition here if user kills between mkdir and trap.
120
 
trap "rmdir '$lockdir'; exit 1" 1 2 15
 
96
trap "rmdir $lockdir; exit 1" 1 2 15
121
97
 
122
98
# Run the compile.
123
 
"$@"
124
 
ret=$?
 
99
"$prog" $args
 
100
status=$?
125
101
 
126
102
if test -f "$cofile"; then
127
 
  mv "$cofile" "$ofile"
128
 
elif test -f "${cofile}bj"; then
129
 
  mv "${cofile}bj" "$ofile"
 
103
   mv "$cofile" "$ofile"
130
104
fi
131
105
 
132
 
rmdir "$lockdir"
133
 
exit $ret
134
 
 
135
 
# Local Variables:
136
 
# mode: shell-script
137
 
# sh-indentation: 2
138
 
# eval: (add-hook 'write-file-hooks 'time-stamp)
139
 
# time-stamp-start: "scriptversion="
140
 
# time-stamp-format: "%:y-%02m-%02d.%02H"
141
 
# time-stamp-end: "$"
142
 
# End:
 
106
rmdir $lockdir
 
107
exit $status