about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2014-11-17 07:54:11 -0600
committerThomas Tuegel <ttuegel@gmail.com>2014-11-17 07:54:11 -0600
commit310acaf1a05b80cc42399eb30e66674c74661b82 (patch)
tree13016135354845720dc64c05a5b72effc1ca66d3 /pkgs
parentbc392e40aa5fe48f10d773c3671084948f5f80b5 (diff)
downloadnixlib-310acaf1a05b80cc42399eb30e66674c74661b82.tar
nixlib-310acaf1a05b80cc42399eb30e66674c74661b82.tar.gz
nixlib-310acaf1a05b80cc42399eb30e66674c74661b82.tar.bz2
nixlib-310acaf1a05b80cc42399eb30e66674c74661b82.tar.lz
nixlib-310acaf1a05b80cc42399eb30e66674c74661b82.tar.xz
nixlib-310acaf1a05b80cc42399eb30e66674c74661b82.tar.zst
nixlib-310acaf1a05b80cc42399eb30e66674c74661b82.zip
hoogle-local: expand wrapper's arguments correctly
The wrapper was expanding all the words of all its arguments. Instead, we want to expand each argument as a word; there is a subtle difference!
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/hoogle/hoogle-local-wrapper.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/haskell/hoogle/hoogle-local-wrapper.sh b/pkgs/development/libraries/haskell/hoogle/hoogle-local-wrapper.sh
index c7b15b8f99de..970c0e6845e5 100644
--- a/pkgs/development/libraries/haskell/hoogle/hoogle-local-wrapper.sh
+++ b/pkgs/development/libraries/haskell/hoogle/hoogle-local-wrapper.sh
@@ -3,4 +3,4 @@
 COMMAND=$1
 shift
 HOOGLE_DOC_PATH=@out@/share/hoogle/doc exec @hoogle@/bin/hoogle \
-    $COMMAND -d @out@/share/hoogle $@
+    $COMMAND -d @out@/share/hoogle "$@"