diff options
Diffstat (limited to 'comms/mgetty+sendfax/pkg-deinstall')
-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;; |