diff options
author | wiz <wiz> | 2005-02-27 11:56:10 +0000 |
---|---|---|
committer | wiz <wiz> | 2005-02-27 11:56:10 +0000 |
commit | 511f19eab3be6a214078d4a04b44a22e39395d5d (patch) | |
tree | 3a7de87ea9abc12feae78d60227761e7a7298bc2 | |
parent | cd44a2fbdc6ae10f489648575c2cf4c45b682243 (diff) | |
download | pkgsrc-511f19eab3be6a214078d4a04b44a22e39395d5d.tar.gz |
Use .else, not .elseif with no clause (should be .elif anyway...).
-rw-r--r-- | wm/fluxbox/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wm/fluxbox/Makefile b/wm/fluxbox/Makefile index 7aabd4e220e..4f86636b8c1 100644 --- a/wm/fluxbox/Makefile +++ b/wm/fluxbox/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2004/10/03 00:18:22 tv Exp $ +# $NetBSD: Makefile,v 1.19 2005/02/27 11:56:10 wiz Exp $ # DISTNAME= fluxbox-0.9.10 @@ -31,7 +31,7 @@ CONFIGURE_ARGS+= --enable-kde FLUXBOX_USE_GNOME?= NO .if !empty(FLUXBOX_USE_GNOME:M[Yy][Ee][Ss]) CONFIGURE_ARGS+= --enable-gnome -.elseif +.else CONFIGURE_ARGS+= --disable-gnome .endif @@ -39,7 +39,7 @@ FLUXBOX_USE_XFT?= YES .if !empty(FLUXBOX_USE_XFT:M[Yy][Ee][Ss]) CONFIGURE_ARGS+= --enable-xft .include "../../fonts/Xft2/buildlink3.mk" -.elseif +.else CONFIGURE_ARGS+= --disable-xft .endif |