xbps-src: remove pre/post and install status file when removing a pkg.

This commit is contained in:
Juan RP 2011-04-12 10:03:24 +02:00
parent 9171a0fef0
commit 15bc8e1eee
1 changed files with 5 additions and 1 deletions

View File

@ -209,5 +209,9 @@ remove_pkg()
rm -rf "$XBPS_DESTDIR/${pkgname}-${ver%_*}"
fi
rm -f $XBPS_PRE_INSTALL_DONE
rm -f $XBPS_POST_INSTALL_DONE
rm -f $XBPS_INSTALL_DONE
return $?
}