2003-12-16 07:55:13 +01:00
|
|
|
#! /bin/sh
|
|
|
|
|
2004-02-23 21:53:55 +01:00
|
|
|
# Copyright (C) 2004 Free Software Foundation, Inc.
|
2003-12-16 07:55:13 +01:00
|
|
|
#
|
2004-02-23 21:53:55 +01:00
|
|
|
# This script is free software; the Free Software Foundation gives
|
|
|
|
# unlimited permission to copy, distribute and modify it.
|
2003-12-16 07:55:13 +01:00
|
|
|
|
2004-02-23 21:53:55 +01:00
|
|
|
# Invoke a shell script with the same name two directories up from this
|
|
|
|
# file. Robust against all kinds of pathological file and directory
|
|
|
|
# names, as well as all kinds of pathological shells.
|
|
|
|
# By Nathanael Nerode, Zack Weinberg, and Alexandre Oliva.
|
2003-12-16 07:55:13 +01:00
|
|
|
|
2004-02-23 21:53:55 +01:00
|
|
|
# Insert "../../" just before the last slash in the pathname.
|
|
|
|
# We use a here-document to avoid problems with "echo" and
|
|
|
|
# pathnames containing backslashes or a leading dash.
|
2003-12-16 07:55:13 +01:00
|
|
|
|
2004-02-23 21:53:55 +01:00
|
|
|
script=`sed 's,[^/]*$,../../&,' << EOF
|
|
|
|
$0
|
2003-12-16 07:55:13 +01:00
|
|
|
EOF
|
2004-02-23 21:53:55 +01:00
|
|
|
`
|
2003-12-16 07:55:13 +01:00
|
|
|
|
2004-02-23 21:53:55 +01:00
|
|
|
# Must honor CONFIG_SHELL if set.
|
|
|
|
# Simple "$@" does the wrong thing for zero arguments with
|
|
|
|
# OSF/1 4.0 /bin/sh, possibly others.
|
|
|
|
# ${1+"$@"} does the wrong thing with zsh (== /bin/sh in
|
|
|
|
# some iterations of Darwin).
|
2003-12-16 07:55:13 +01:00
|
|
|
|
2004-02-23 21:53:55 +01:00
|
|
|
case $# in
|
|
|
|
0) exec ${CONFIG_SHELL-/bin/sh} "$script" ;;
|
|
|
|
*) exec ${CONFIG_SHELL-/bin/sh} "$script" "$@" ;;
|
2003-12-16 07:55:13 +01:00
|
|
|
esac
|
|
|
|
|