diff options
author | Steve Price <steve@FreeBSD.org> | 1999-05-24 02:10:08 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-05-24 02:10:08 +0000 |
commit | d1683da62d695ac6708a30756fa7abdf6aa9f764 (patch) | |
tree | bfbe23b6db5e2ec59ab0bb375e69d309e6204a78 /comms | |
parent | This port doesn't build with egcs' f77 compiler. (diff) |
Deinstall without interaction while package building.
Notes
Notes:
svn path=/head/; revision=18963
Diffstat (limited to 'comms')
-rw-r--r-- | comms/mgetty+sendfax/pkg-deinstall | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/comms/mgetty+sendfax/pkg-deinstall b/comms/mgetty+sendfax/pkg-deinstall index d3584709d239..82ed1dbf6633 100644 --- a/comms/mgetty+sendfax/pkg-deinstall +++ b/comms/mgetty+sendfax/pkg-deinstall @@ -11,8 +11,12 @@ now. END -echo -n "do you want to deinstall the package ? [y] " -read answ; if [ "$answ" = "" ]; then answ=y; fi +if [ -z "${PACKAGE_BUILDING}" ]; then + echo -n "do you want to deinstall the package ? [y] " + read answ; if [ "$answ" = "" ]; then answ=y; fi +else + answ=y +fi case $answ in y*|Y*) exit 0;; *) exit 1;; |