From 324d7d07af6858a263cb771f0fdb874645741ce0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Mon, 9 Dec 2013 18:04:16 +0100 Subject: [PATCH] netsurf_buildsystem: Force installing to data/ The install path is hardcoded in the makefile to $prefix/shared/. Also remove the make invocation, it's a no-op anyway. --- dev-util/buildsystem/buildsystem-1.0_git.recipe | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-util/buildsystem/buildsystem-1.0_git.recipe b/dev-util/buildsystem/buildsystem-1.0_git.recipe index 72fa5c2ed..a616a303e 100644 --- a/dev-util/buildsystem/buildsystem-1.0_git.recipe +++ b/dev-util/buildsystem/buildsystem-1.0_git.recipe @@ -3,7 +3,6 @@ DESCRIPTION="NetSurf build framework for compiling some of their libraries" HOMEPAGE="http://www.netsurf-browser.org/" SRC_URI="git://git.netsurf-browser.org/buildsystem.git" REVISION="1" -STATUS_HAIKU="stable" LICENSE="MIT" COPYRIGHT="2009 - 2013 The NetSurf Browser project" @@ -32,11 +31,13 @@ SOURCE_DIR="$portVersionedName" BUILD() { - make + # no-op + # make + : } INSTALL() { - make install PREFIX=$prefix + make install PREFIX=$prefix BASE=$prefix/data/netsurf-buildsystem }