diff options
author | rillig <rillig@pkgsrc.org> | 2019-11-02 22:18:22 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2019-11-02 22:18:22 +0000 |
commit | ad93dce8c274d9f95a3df1aa449e2211ed33757c (patch) | |
tree | 230496f7efa7b56c4b2c2650b888a4e1805f079a /chat/hexchat | |
parent | 026c2efcb746f36d4f807b11bcae4e2cd6ae1c9b (diff) | |
download | pkgsrc-ad93dce8c274d9f95a3df1aa449e2211ed33757c.tar.gz |
chat: align variable assignments
pkglint -Wall -F --only aligned --only indent -r
No manual corrections.
Diffstat (limited to 'chat/hexchat')
-rw-r--r-- | chat/hexchat/options.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chat/hexchat/options.mk b/chat/hexchat/options.mk index 1537fb7784e..8be88074703 100644 --- a/chat/hexchat/options.mk +++ b/chat/hexchat/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.7 2019/07/09 10:32:51 nia Exp $ +# $NetBSD: options.mk,v 1.8 2019/11/02 22:18:22 rillig Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.hexchat PKG_SUPPORTED_OPTIONS= dbus gtk2 libcanberra libnotify libpci libproxy @@ -45,11 +45,11 @@ MESON_ARGS+= -Dwith-libnotify=false .if !empty(PKG_OPTIONS:Mlibpci) .include "../../sysutils/pciutils/buildlink3.mk" -.if ${OPSYS} == "NetBSD" +. if ${OPSYS} == "NetBSD" LIBS+= -lpciutils -.else +. else LIBS+= -lpci -.endif +. endif PLIST.libpci= yes MESON_ARGS+= -Dwith-sysinfo=true .else |