Package: plplot
Version: 5.9.0-7
Severity: serious
Tags: patch

Hello. From plplot's debian/rules:

  ifneq (,$(findstring $(DEB_BUILD_ARCH):,alpha:arm:hppa:hurd-i386:))
    BUILD_JAVA = no
  else
    BUILD_JAVA = yes
  fi

Which makes java not be built on "i386:". A possible patch would be
adding a colon before the arch name:

  ifneq (,$(findstring :$(DEB_BUILD_ARCH):,:alpha:arm:hppa:hurd-i386:))
                       ^                   ^

Another way is to use $(filter) instead, like this:

  ifneq (,$(filter $(DEB_BUILD_ARCH),alpha arm hppa hurd-i386))
    BUILD_JAVA = no
  else
    BUILD_JAVA = yes
  fi


If you could make a quick upload fixing this issue I'd be grateful; I
need this fixed to get the gcc-defaults transition ready...

Thanks,

-- 
Adeodato Simó                                     dato at net.com.org.es
Debian Developer                                  adeodato at debian.org
 
                       Listening to: Chavela Vargas - He perdido contigo




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to