From b4c5d052b6f170ebe6d9e533118669ad74eb4281 Mon Sep 17 00:00:00 2001 From: idriskalp Date: Tue, 21 Jan 2020 18:33:42 +0300 Subject: [PATCH] rubberband fix --- multimedia/video/rubberband/actions.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/multimedia/video/rubberband/actions.py b/multimedia/video/rubberband/actions.py index f481947c36..42a01ce0cc 100644 --- a/multimedia/video/rubberband/actions.py +++ b/multimedia/video/rubberband/actions.py @@ -10,14 +10,11 @@ from pisi.actionsapi import shelltools from pisi.actionsapi import get JAVA_HOME = "/usr/lib/jvm/java-7-openjdk" +shelltools.export("JAVA_HOME", JAVA_HOME) def setup(): - shelltools.export("JAVA_HOME", "%s" %JAVA_HOME) - shelltools.export("CFLAGS", "%s -I%s/include -I%s/include/linux" %(get.CFLAGS(), JAVA_HOME, JAVA_HOME)) - shelltools.export("CXXFLAGS", "%s -I%s/include -I%s/include/linux" %(get.CXXFLAGS(), JAVA_HOME, JAVA_HOME)) - - autotools.autoreconf("-vfi") - autotools.configure() + autotools.autoreconf("-vfi") + autotools.configure() def build(): autotools.make()