From patchwork Wed Nov 7 02:14:56 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 994055 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 42qVQp1jDVz9sND for ; Wed, 7 Nov 2018 13:16:34 +1100 (AEDT) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="W7XQHtOS"; dkim-atps=neutral Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 42qVQn6WCZzF3G0 for ; Wed, 7 Nov 2018 13:16:33 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="W7XQHtOS"; dkim-atps=neutral X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (bilbo.ozlabs.org [IPv6:2401:3900:2:1::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 42qVP90s4MzF3Fv for ; Wed, 7 Nov 2018 13:15:09 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="W7XQHtOS"; dkim-atps=neutral Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPSA id 42qVP85f5vz9sD4; Wed, 7 Nov 2018 13:15:08 +1100 (AEDT) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ozlabs.org; s=201707; t=1541556908; bh=1oEHkxyB6we1Rkr20STz+RcESmq32FVcm0lFCl4JV3w=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=W7XQHtOSV/+P332fgUPYhUQnvQUKC8IXinoenxG3ybVjaA2/vcPKwmfrxUntKC206 PptEEE0fejbugi90svGrZikpOqiC20IE1k2mLmHAdcVDfjMgs8SamoL45k1diz1vC7 KYGFtp7dQ6+cjwsJpX7wrn7iOOcQv1MAmtw9DzzIVPkL8qapXFy8nVWQgZpUEGLsMT /NC6gVVU2hGMhvmudI5CWYk/+LkNhZh1ky7xTKlS/EYwtPv/Nbu5zD8kgvJplpzHk/ qhvtgnaH/YfVM9Db/UqHnJEsw5M5x1JNFYERCmqO/Zjz/HMENd6HwIUTiScb7y09oQ V7xkCxTRXihVQ== From: Amitay Isaacs To: pdbg@lists.ozlabs.org Date: Wed, 7 Nov 2018 13:14:56 +1100 Message-Id: <20181107021456.1219553-11-amitay@ozlabs.org> X-Mailer: git-send-email 2.17.2 In-Reply-To: <20181107021456.1219553-1-amitay@ozlabs.org> References: <20181107021456.1219553-1-amitay@ozlabs.org> Subject: [Pdbg] [PATCH 10/10] Makefile: Order the libraries for make install to work X-BeenThere: pdbg@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "mailing list for https://github.com/open-power/pdbg development" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Amitay Isaacs MIME-Version: 1.0 Errors-To: pdbg-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Pdbg" Signed-off-by: Amitay Isaacs --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 83c4a4d..41a030d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -119,7 +119,7 @@ pdbg_LDADD = $(DT_objects) libpdbg.la libccan.a \ pdbg_LDFLAGS = -Wl,--whole-archive,-lpdbg,--no-whole-archive -lib_LTLIBRARIES = libpdbg.la libfdt.la +lib_LTLIBRARIES = libfdt.la libpdbg.la libfdt_la_CFLAGS = -I$(top_srcdir)/libfdt libpdbg_la_CFLAGS = -I$(top_srcdir)/libfdt -Wall -Werror