From e22860acccb17806b6d59773a64abff4cee156c0 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Mon, 30 Jul 2012 02:06:24 -0500 Subject: [PATCH] main: fix regression caused by moving to bitfield where --cflags or --libs wouldn't cause a newline --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 31da26d..8911b55 100644 --- a/main.c +++ b/main.c @@ -778,7 +778,7 @@ main(int argc, char *argv[]) } } - if ((want_flags & (PKG_CFLAGS|PKG_LIBS)) == (PKG_CFLAGS|PKG_LIBS)) + if ((want_flags & (PKG_CFLAGS|PKG_LIBS))) printf("\n"); pkg_queue_free(pkgq_head);