diff options
Diffstat (limited to 'pbuilder-createbuildenv')
-rwxr-xr-x | pbuilder-createbuildenv | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pbuilder-createbuildenv b/pbuilder-createbuildenv index e187e7b..2cd7ff5 100755 --- a/pbuilder-createbuildenv +++ b/pbuilder-createbuildenv @@ -92,11 +92,15 @@ case "`readlink -e "$PBUILDERSATISFYDEPENDSCMD"`" in EXTRAPACKAGES="$EXTRAPACKAGES aptitude" ;; *) - REMOVEPACKAGES="$REMOVEPACKAGES aptitude" + EXTRAPACKAGES="$EXTRAPACKAGES aptitude-" ;; esac if [ -n "$REMOVEPACKAGES" ]; then + # FIXME this wont work if the packages have some reverse dependencies; + # apt-get can also remove package, either with apt-get remove or purge, or + # with apt-get install name-of-pkg- (i.e. a minus sign after the package + # name) $CHROOTEXEC /usr/bin/dpkg --purge $REMOVEPACKAGES fi recover_aptcache |