Removed bashish.
authordtrg <none@none>
Tue, 24 Apr 2007 19:48:41 +0000 (19:48 +0000)
committerdtrg <none@none>
Tue, 24 Apr 2007 19:48:41 +0000 (19:48 +0000)
distr/mkdist

index 7b11e15..2e26534 100755 (executable)
@@ -61,7 +61,7 @@ while [ "$1" != "" ]; do
        shift
 done
 
-if [ "$destdir" == "" ]; then
+if [ "$destdir" = "" ]; then
        echo "You must specify a destination directory. (Try --help for help.)"
        exit 1
 fi
@@ -131,7 +131,7 @@ if !(strings $arch | grep archiver > /dev/null); then
        echo "architecture.)"
        echo ""
        echo "Press RETURN to go ahead anyway, or CTRL+C to abort."
-       read
+       read ignored
 fi
 
 # Actually do the work.
@@ -141,7 +141,7 @@ echo "              into destination tree: $destdir"
 echo ""
 
 if [ -e $destdir ]; then
-       if [ "$delete" == "yes" ]; then
+       if [ "$delete" = "yes" ]; then
                echo "Press RETURN to erase $destdir and its contents, or CTRL+C to abort."
                read
                echo "Erasing..."
@@ -159,7 +159,10 @@ echo "Done."
 
 # Revision history
 # $Log$
-# Revision 1.4  2007-02-25 20:56:41  dtrg
+# Revision 1.5  2007-04-24 19:48:41  dtrg
+# Removed bashish.
+#
+# Revision 1.4  2007/02/25 20:56:41  dtrg
 # Performed major renovations to make the script work on OpenBSD.
 #
 # Revision 1.3  2007/02/24 02:05:56  dtrg