From: Marcin Juszkiewicz Date: Mon, 4 Aug 2008 15:21:35 +0000 (+0000) Subject: cmake: configure with proper prefix X-Git-Tag: Release-2010-05/1~6364^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4216de7b49215f46cfb0071753b2a371a0380416;p=openembedded.git cmake: configure with proper prefix --- diff --git a/packages/cmake/cmake.inc b/packages/cmake/cmake.inc index d046c84858..eb816680cd 100644 --- a/packages/cmake/cmake.inc +++ b/packages/cmake/cmake.inc @@ -5,6 +5,7 @@ DESCRIPTION = "A cross-platform, open-source make system" HOMEPAGE = "http://www.cmake.org/" LICENSE = "Berkeley-style license" SECTION = "console/utils" +PR = "r1" CMAKE_MAJOR_VERSION = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}" SRC_URI = "http://www.cmake.org/files/v${CMAKE_MAJOR_VERSION}/cmake-${PV}.tar.gz" @@ -14,5 +15,5 @@ inherit autotools S = "${WORKDIR}/cmake-${PV}" do_configure () { - ./configure --prefix=${base_prefix} || die "./bootstrap failed" + ./configure --prefix=${prefix} || die "./bootstrap failed" }