summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorClaudio Bley <claudio.bley@gmail.com>2021-03-18 17:52:22 +0100
committerGitHub <noreply@github.com>2021-03-18 17:52:22 +0100
commit61d075d3c275366c3344d59c058d7dd0baf21ef2 (patch)
tree36980198100d0772ea8881393a08829cf6fb01a2 /src
parent32731d5aa22b0f9e45218f0df38e55e55339370c (diff)
downloadxmobar-61d075d3c275366c3344d59c058d7dd0baf21ef2.tar.gz
xmobar-61d075d3c275366c3344d59c058d7dd0baf21ef2.tar.bz2
Fix typo `DRTSOPTS` -> `RTSOPTS`
The cpp option `-DRTSOPTS` results in `RTSOPTS` being defined.
Diffstat (limited to 'src')
-rw-r--r--src/Xmobar/App/Compile.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Xmobar/App/Compile.hs b/src/Xmobar/App/Compile.hs
index bcb18d0..80dbac7 100644
--- a/src/Xmobar/App/Compile.hs
+++ b/src/Xmobar/App/Compile.hs
@@ -165,7 +165,7 @@ recompile confDir dataDir execName force verb = liftIO $ do
#ifdef THREADED_RUNTIME
++ ["-threaded"]
#endif
-#ifdef DRTSOPTS
+#ifdef RTSOPTS
++ ["-rtsopts", "-with-rtsopts", "-V0"]
#endif
++ ["-o", bin]