diff options
author | wiz <wiz@pkgsrc.org> | 2005-02-27 11:56:10 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-02-27 11:56:10 +0000 |
commit | 55b847e7649155bb647818dcdd9cd2a391e38e1d (patch) | |
tree | 3a7de87ea9abc12feae78d60227761e7a7298bc2 /wm | |
parent | 361880c73a3078d0d869e589c1acd15ca3148989 (diff) | |
download | pkgsrc-55b847e7649155bb647818dcdd9cd2a391e38e1d.tar.gz |
Use .else, not .elseif with no clause (should be .elif anyway...).
Diffstat (limited to 'wm')
-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 |