diff options
author | hoek <hoek@FreeBSD.org> | 1999-05-26 08:34:26 +0800 |
---|---|---|
committer | hoek <hoek@FreeBSD.org> | 1999-05-26 08:34:26 +0800 |
commit | 9456b0e538bc6fc2f1e8fe8809260e8a5f790096 (patch) | |
tree | 1264388f249916c70edc3a897a14808074d463e9 /x11-toolkits/tk83 | |
parent | f7b619b1a9522a2a05199562433cf3a4e1b87296 (diff) | |
download | freebsd-ports-gnome-9456b0e538bc6fc2f1e8fe8809260e8a5f790096.tar.gz freebsd-ports-gnome-9456b0e538bc6fc2f1e8fe8809260e8a5f790096.tar.zst freebsd-ports-gnome-9456b0e538bc6fc2f1e8fe8809260e8a5f790096.zip |
Don't unintentionally overwrite an existing tclsh/wish.
Reported-By: Mikhail Teterin <mi@kot.ne.mediaone.net>
Diffstat (limited to 'x11-toolkits/tk83')
-rw-r--r-- | x11-toolkits/tk83/pkg-install.wish | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-toolkits/tk83/pkg-install.wish b/x11-toolkits/tk83/pkg-install.wish index 645c3a6e1fb2..d526f076a498 100644 --- a/x11-toolkits/tk83/pkg-install.wish +++ b/x11-toolkits/tk83/pkg-install.wish @@ -1,9 +1,9 @@ #!/bin/sh # The user may have a wish they want to preserve -if [ ! -f ${PKG_PREFIX}/bin/wish ] || [ \ - `grep -a awieYJFnsuILOnfsYEW ${PKG_PREFIX}/bin/wish | sed -e 's/.*\*\*//'` \ - -lt 001 ] +ver=`grep -a awieYJFnsuILOnfsYEW ${PKG_PREFIX}/bin/wish 2> /dev/null \ + | sed -e 's/.*\*\*//'` +if [ ! -e ${PKG_PREFIX}/bin/wish ] || [ "$ver" != "" -a "$ver" -lt 001 ] then [ -f ${PKG_PREFIX}/bin/wish ] && chmod u+w ${PKG_PREFIX}/bin/wish |