From patchwork Tue Feb 14 05:05:27 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dan Williams X-Patchwork-Id: 9571209 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 091BE601E7 for ; Tue, 14 Feb 2017 05:09:35 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E3B1A27F85 for ; Tue, 14 Feb 2017 05:09:34 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D607D28112; Tue, 14 Feb 2017 05:09:34 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from ml01.01.org (ml01.01.org [198.145.21.10]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 8933B27F85 for ; Tue, 14 Feb 2017 05:09:34 +0000 (UTC) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 1473381FBC; Mon, 13 Feb 2017 21:09:34 -0800 (PST) X-Original-To: linux-nvdimm@lists.01.org Delivered-To: linux-nvdimm@lists.01.org Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 41B5581FBB for ; Mon, 13 Feb 2017 21:09:32 -0800 (PST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Feb 2017 21:09:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.35,159,1484035200"; d="scan'208";a="58330856" Received: from dwillia2-desk3.jf.intel.com (HELO dwillia2-desk3.amr.corp.intel.com) ([10.54.39.14]) by orsmga004.jf.intel.com with ESMTP; 13 Feb 2017 21:09:31 -0800 Subject: [PATCH] daxctl: add libuuid to the build From: Dan Williams To: linux-nvdimm@lists.01.org Date: Mon, 13 Feb 2017 21:05:27 -0800 Message-ID: <148704872715.1063.10397645808975705401.stgit@dwillia2-desk3.amr.corp.intel.com> User-Agent: StGit/0.17.1-9-g687f MIME-Version: 1.0 X-BeenThere: linux-nvdimm@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Linux-nvdimm developer list." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Yilong Ren Errors-To: linux-nvdimm-bounces@lists.01.org Sender: "Linux-nvdimm" X-Virus-Scanned: ClamAV using ClamSMTP daxctl does have dependencies on the uuid library via util/json.c, but the build only seems to fail in a Debian build environment. Fix this up. Reported-by: Yilong Ren Signed-off-by: Dan Williams --- daxctl/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/daxctl/Makefile.am b/daxctl/Makefile.am index 9153c418cdaf..fe467d030c38 100644 --- a/daxctl/Makefile.am +++ b/daxctl/Makefile.am @@ -10,4 +10,5 @@ daxctl_SOURCES =\ daxctl_LDADD =\ lib/libdaxctl.la \ ../libutil.a \ + $(UUID_LIBS) \ $(JSON_LIBS)