From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2D4CE138334 for ; Sat, 8 Jun 2019 18:25:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43A00E085D; Sat, 8 Jun 2019 18:25:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 265EBE085D for ; Sat, 8 Jun 2019 18:25:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E497345A49 for ; Sat, 8 Jun 2019 18:25:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7AA455B for ; Sat, 8 Jun 2019 18:25:51 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1560018252.73e948da651ff5b25ce0eb9dc38e1f5adcc5ccbb.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: applets.h X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 73e948da651ff5b25ce0eb9dc38e1f5adcc5ccbb X-VCS-Branch: master Date: Sat, 8 Jun 2019 18:25:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0eb242d6-35a3-4664-ac1f-69849e9d202f X-Archives-Hash: 569502b2c9332772d5e8257695585b5d commit: 73e948da651ff5b25ce0eb9dc38e1f5adcc5ccbb Author: Fabian Groffen gentoo org> AuthorDate: Sat Jun 8 18:24:12 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat Jun 8 18:24:12 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=73e948da applets.h: fix qmanifest conditional it's not HAVE_QMANIFEST but ENABLE_QMANIFEST Signed-off-by: Fabian Groffen gentoo.org> applets.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/applets.h b/applets.h index 68bf7f6..fbb21aa 100644 --- a/applets.h +++ b/applets.h @@ -46,7 +46,7 @@ DECLARE_APPLET(qgrep) DECLARE_APPLET(qkeyword) DECLARE_APPLET(qlist) DECLARE_APPLET(qlop) -#ifdef HAVE_QMANIFEST +#ifdef ENABLE_QMANIFEST DECLARE_APPLET(qmanifest) #endif DECLARE_APPLET(qmerge) @@ -78,7 +78,7 @@ static const struct applet_t { {"qkeyword", qkeyword_main, " ", "list packages based on keywords"}, {"qlist", qlist_main, "", "list files owned by pkgname"}, {"qlop", qlop_main, "", "emerge log analyzer"}, -#ifdef HAVE_QMANIFEST +#ifdef ENABLE_QMANIFEST {"qmanifest", qmanifest_main, "", "verify or generate thick Manifest files"}, #endif {"qmerge", qmerge_main, "", "fetch and merge binary package"}, @@ -112,7 +112,7 @@ static const struct applet_t { /* alias for qtegrity */ {"integrity", qtegrity_main, NULL, NULL}, -#ifdef HAVE_QMANIFEST +#ifdef ENABLE_QMANIFEST /* old hashgen */ {"hashgen", qmanifest_main, NULL, NULL}, {"hashverify",qmanifest_main, NULL, NULL},