diff options
author | jkh <jkh@FreeBSD.org> | 1995-01-12 16:18:18 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-01-12 16:18:18 +0000 |
commit | c468677d0b2529fcd6b591dae24be7fbbbf5b36f (patch) | |
tree | 1eaafb1acbca886d93da9eeb3b411128f40a2913 /release/bininst | |
parent | 5f3297e5940d9bc28f0e813c514366e69f2e724c (diff) | |
download | FreeBSD-src-c468677d0b2529fcd6b591dae24be7fbbbf5b36f.zip FreeBSD-src-c468677d0b2529fcd6b591dae24be7fbbbf5b36f.tar.gz |
A slicker way of eliminating bogus quotes.
Ask less questions about the temporary directory if instructed to.
Diffstat (limited to 'release/bininst')
-rwxr-xr-x | release/bininst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release/bininst b/release/bininst index 5d24c86..b4e6aab 100755 --- a/release/bininst +++ b/release/bininst @@ -13,7 +13,7 @@ # putting your name on top after doing something trivial like reindenting # it, just to make it look like you wrote it!). # -# $Id: bininst,v 1.54 1994/12/17 06:57:44 jkh Exp $ +# $Id: bininst,v 1.55 1994/12/29 20:09:59 jkh Exp $ if [ "${_BININST_LOADED_}" = "yes" ]; then error "Error, $0 loaded more than once!" @@ -128,7 +128,7 @@ while [ "${INSTALLING}" = "yes" ]; do if media_select_distribution; then if media_chose; then for xx in ${MEDIA_DISTRIBUTIONS}; do - MEDIA_DISTRIBUTION=`echo $xx | sed -e 's/"//g'` + MEDIA_DISTRIBUTION=`eval echo \`echo $xx\`` media_install_set done fi |