From patchwork Tue Dec 17 18:03:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gary Bisson X-Patchwork-Id: 302320 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id B78232C00A2 for ; Wed, 18 Dec 2013 05:04:35 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id A6545933EF; Tue, 17 Dec 2013 18:04:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id F2flHeoo0bEx; Tue, 17 Dec 2013 18:04:34 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id EBC8993488; Tue, 17 Dec 2013 18:04:33 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 7D4351C2914 for ; Tue, 17 Dec 2013 18:04:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 7B7EA84AA8 for ; Tue, 17 Dec 2013 18:04:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UPxpyfboea-T for ; Tue, 17 Dec 2013 18:04:32 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pa0-f42.google.com (mail-pa0-f42.google.com [209.85.220.42]) by whitealder.osuosl.org (Postfix) with ESMTPS id F2CE284785 for ; Tue, 17 Dec 2013 18:04:31 +0000 (UTC) Received: by mail-pa0-f42.google.com with SMTP id lj1so4782213pab.15 for ; Tue, 17 Dec 2013 10:04:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=/uhU/3Lp8Qqqt3klRfPKqSKWLYfuPMs0etnq8Y6457s=; b=TOqyCBJ2uL8D1cW1fwOcD7WppNpTNS8eNDQ/CBwIMskR0nK5wm3yw8SrbBpqwKH/i7 fm03fBJfaSnH+1P+SX/Zk7HQ9IzJpNsjWqBCzi7TaaUrh6h2ciGjd2Ltx6XYrB6zXaMv g1ouaTgZYP8y5ry2dStGX1p0eETDoX7sZKOtW0qUkaNxLvG2MkDSnQW04x3xfZBkjLLu 2dTVzdkTtg5PJcXZ/dJfwBHB+a/Py7k27TeqrDZVMSj3Urt3LdybDxnkAgyA9JzmIFsc FEEMKxKv/mew9iXJRih5J0fMRKTEeNz3biDMkO4Fh1UQZ2QHtJWMDuy7XzcYVn+/6a31 ltEQ== X-Received: by 10.67.30.70 with SMTP id kc6mr29046094pad.32.1387303471693; Tue, 17 Dec 2013 10:04:31 -0800 (PST) Received: from N5520.adeneo-embedded.us (173-10-76-58-BusName-Washington.hfc.comcastbusiness.net. [173.10.76.58]) by mx.google.com with ESMTPSA id yg3sm47977287pab.16.2013.12.17.10.04.29 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 17 Dec 2013 10:04:29 -0800 (PST) From: Gary Bisson To: buildroot@busybox.net Date: Tue, 17 Dec 2013 10:03:46 -0800 Message-Id: <1387303426-29751-1-git-send-email-bisson.gary@gmail.com> X-Mailer: git-send-email 1.8.5.1 Cc: Gary Bisson Subject: [Buildroot] [PATCH] libroxml: fix staging install directory path X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Gary Bisson --- package/libroxml/libroxml.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/libroxml/libroxml.mk b/package/libroxml/libroxml.mk index 3eefd9d..ca32bf9 100644 --- a/package/libroxml/libroxml.mk +++ b/package/libroxml/libroxml.mk @@ -13,7 +13,7 @@ define LIBROXML_BUILD_CMDS endef define LIBROXML_INSTALL_STAGING_CMDS - $(MAKE) DESTDIR=$(STAGING_DIR) -C $(@D) install + $(MAKE) DESTDIR=$(STAGING_DIR)/usr/ -C $(@D) install endef define LIBROXML_INSTALL_TARGET_CMDS