From: Taylor R. Campbell Date: Thu, 5 Apr 2007 00:25:30 +0000 (+0000) Subject: Use `pwd`, rather than $(pwd), which standard sh does not support. X-Git-Tag: 20090517-FFI~693 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=491b6a5ed544da15a7474dce035919ca0d71143d;p=mit-scheme.git Use `pwd`, rather than $(pwd), which standard sh does not support. --- diff --git a/v7/src/compiler/Clean.sh b/v7/src/compiler/Clean.sh index 3b14ce3e3..58e0da26a 100755 --- a/v7/src/compiler/Clean.sh +++ b/v7/src/compiler/Clean.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $Id: Clean.sh,v 1.13 2007/04/04 05:08:18 riastradh Exp $ +# $Id: Clean.sh,v 1.14 2007/04/05 00:25:30 riastradh Exp $ # # Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, # 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, @@ -31,7 +31,7 @@ if [ $# -ne 1 ]; then exit 1 fi -TOPDIR=${TOPDIR:-$(pwd)/..} +TOPDIR=${TOPDIR:-`pwd`/..} export TOPDIR CLEANSH=${TOPDIR}/etc/Clean.sh "${CLEANSH}" "${1}" rm-pkg