diff options
author | Johan Dahlin <jdahlin@litl.com> | 2009-02-25 14:38:20 -0300 |
---|---|---|
committer | Johan Dahlin <johan@gnome.org> | 2009-02-25 14:38:20 -0300 |
commit | a51b8305c70fedd6d989229c3d7ed46b200718e8 (patch) | |
tree | ad84873a605d87ccc186a0ef0837282acb9f0446 | |
parent | 81c8b0af2fe9fe9731fe388d0a82813567e377ff (diff) | |
download | gobject-introspection-a51b8305c70fedd6d989229c3d7ed46b200718e8.tar.gz |
Fix a typo, reel -> real
-rw-r--r-- | scripts/shave.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/shave.in b/scripts/shave.in index 487596e3..95845d81 100644 --- a/scripts/shave.in +++ b/scripts/shave.in @@ -16,8 +16,8 @@ lt_unmangle () tool="$1" shift -# the reel tool (to call) -REEL_TOOL="$1" +# the real tool (to call) +REAL_TOOL="$1" shift pass_through=0 @@ -63,8 +63,8 @@ if test -z $V; then if test $pass_through -eq 0; then echo "$Q$output" fi - $REEL_TOOL $preserved_args + $REAL_TOOL $preserved_args else - echo $REEL_TOOL $preserved_args - $REEL_TOOL $preserved_args + echo $REAL_TOOL $preserved_args + $REAL_TOOL $preserved_args fi |