Remove git_cvs from the non-hybrid gcc2 image.

It depends on gcc4-only package cvsps. Thanks to Ingo for suggestion on
how to do this.
This commit is contained in:
Adrien Destugues 2014-09-18 14:55:55 +02:00
parent fda3962062
commit 1c3d2f2da4
1 changed files with 7 additions and 1 deletions

View File

@ -178,7 +178,13 @@ if [ IsOptionalHaikuImagePackageAdded FFMpeg-devel ] {
# Git
if [ IsOptionalHaikuImagePackageAdded Git ] {
AddHaikuImagePackages git git_arch git_cvs git_daemon git_email git_svn ;
AddHaikuImagePackages git git_arch git_daemon git_email git_svn ;
# git_cvs depends on cvsps, which does not build with gcc2. So it is not
# available on gcc2-only builds.
if $(TARGET_PACKAGING_ARCHS) != x86_gcc2 {
AddHaikuImagePackages git_cvs ;
;
}