Eliminate unused ${FULL}.
authorChris Hanson <org/chris-hanson/cph>
Sun, 29 Apr 2007 17:56:15 +0000 (17:56 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sun, 29 Apr 2007 17:56:15 +0000 (17:56 +0000)
v7/src/etc/Clean.sh

index 56c39d5e6103c9e95d6675b7bc50a4523f232725..31edbe09ab0c7bb99de8ce7c866b394fd9ea627d 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $Id: Clean.sh,v 1.17 2007/04/04 05:08:19 riastradh Exp $
+# $Id: Clean.sh,v 1.18 2007/04/29 17:56:15 cph Exp $
 #
 # Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
 #     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
@@ -45,21 +45,15 @@ else
     exit 1
 fi
 
-FULL="no"
 DIST="no"
 MAINTAINER="no"
 case "${COMMAND}" in
-mostlyclean)
-    ;;
-clean)
-    FULL="yes"
+mostlyclean | clean)
     ;;
 distclean | c-clean)
-    FULL="yes"
     DIST="yes"
     ;;
 maintainer-clean)
-    FULL="yes"
     DIST="yes"
     MAINTAINER="yes"
     ;;