Skip to content

Instantly share code, notes, and snippets.

Created January 23, 2018 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/8f5e8b248fc6b7d91a65ce549853c072 to your computer and use it in GitHub Desktop.
Save anonymous/8f5e8b248fc6b7d91a65ce549853c072 to your computer and use it in GitHub Desktop.
From 72971292fe7c97faf45106e148d1515d5146c36e Mon Sep 17 00:00:00 2001
From: Steven Allen <steven@stebalien.com>
Date: Tue, 23 Jan 2018 13:01:02 -0800
Subject: [PATCH] fix else -> elif
---
PKGBUILD | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/PKGBUILD b/PKGBUILD
index 956acfc..88b35ca 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -219,7 +219,7 @@ elif [[ $LUCID = "YES" ]]; then
_conf+=( '--with-x-toolkit=lucid' '--with-xft' '--with-xaw3d' );
elif [[ $GTK2 = "YES" ]]; then
_conf+=( '--with-x-toolkit=gtk2' '--without-gsettings' '--without-xaw3d' );
-else [[ $GTK3 = "YES" ]]; then
+elif [[ $GTK3 = "YES" ]]; then
_conf+=( '--with-x-toolkit=gtk3' '--without-xaw3d' );
fi
--
2.16.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment