aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2019-06-08 20:24:12 +0200
committerFabian Groffen <grobian@gentoo.org>2019-06-08 20:24:12 +0200
commit73e948da651ff5b25ce0eb9dc38e1f5adcc5ccbb (patch)
treeeab1ce32c2cf0f665f14d58ad6ff03367e3455e2 /applets.h
parentbuildsys: regenerate with automake-1.16.1 (diff)
downloadportage-utils-73e948da651ff5b25ce0eb9dc38e1f5adcc5ccbb.tar.gz
portage-utils-73e948da651ff5b25ce0eb9dc38e1f5adcc5ccbb.tar.bz2
portage-utils-73e948da651ff5b25ce0eb9dc38e1f5adcc5ccbb.zip
applets.h: fix qmanifest conditional
it's not HAVE_QMANIFEST but ENABLE_QMANIFEST Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'applets.h')
-rw-r--r--applets.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/applets.h b/applets.h
index 68bf7f68..fbb21aa9 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, "<action> <args>", "list packages based on keywords"},
{"qlist", qlist_main, "<pkgname>", "list files owned by pkgname"},
{"qlop", qlop_main, "<pkgname>", "emerge log analyzer"},
-#ifdef HAVE_QMANIFEST
+#ifdef ENABLE_QMANIFEST
{"qmanifest", qmanifest_main, "<misc args>", "verify or generate thick Manifest files"},
#endif
{"qmerge", qmerge_main, "<pkgnames>", "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},