summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1998-04-13 16:12:29 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1998-04-13 16:12:29 +0000
commit841e35f2c70582c7d6769a7e9f760a294315f37e (patch)
treec96a5c3641a7958669e95429e97cca46a1d91f56
parente9b447ecf35877fed8f7336193d1c3ae5e576f83 (diff)
ls -F the zoneinfo files, shows what is a zone-dir and what is a zone-file
-rw-r--r--distrib/miniroot/install.sub6
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub
index 2589048ae11..97807903c4e 100644
--- a/distrib/miniroot/install.sub
+++ b/distrib/miniroot/install.sub
@@ -1,5 +1,5 @@
#!/bin/sh
-# $OpenBSD: install.sub,v 1.72 1998/04/05 23:53:17 deraadt Exp $
+# $OpenBSD: install.sub,v 1.73 1998/04/13 16:12:28 deraadt Exp $
# $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $
#
# Copyright (c) 1997,1998 Todd Miller, Theo de Raadt
@@ -1771,7 +1771,7 @@ while : ; do
break;
;;
"?")
- ls ${_zonepath}/usr/share/zoneinfo
+ ls -F ${_zonepath}/usr/share/zoneinfo
;;
*)
_a=$resp
@@ -1781,7 +1781,7 @@ while : ; do
echo -n "Select a sub-timezone [\`?' for list]: "
getresp ""
case "$resp" in
- "?") ls ${_zonepath}/usr/share/zoneinfo/$_a ;;
+ "?") ls -F ${_zonepath}/usr/share/zoneinfo/$_a ;;
*) _a=${_a}/${resp}
if [ -f ${_zonepath}/usr/share/zoneinfo/$_a ]; then
break;