summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2009-11-20 23:07:59 +0100
committerAndreas Gruenbacher <agruen@suse.de>2009-11-20 23:07:59 +0100
commit97f6d737cf693cfdcd097cf4a6bbe5d9c3dae762 (patch)
treeb06f90e2ab3e7a1adab8a02d04d4cdb256c65b68
parent0ba994a91b0e5fa26b79e783b4b9c5568e712da3 (diff)
downloadquilt-97f6d737cf693cfdcd097cf4a6bbe5d9c3dae762.tar.gz
Do not quite QUILT_PAGER when executing the pager
(This allows to add parameters.)
-rw-r--r--quilt/scripts/patchfns.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/quilt/scripts/patchfns.in b/quilt/scripts/patchfns.in
index be6228e..c222aed 100644
--- a/quilt/scripts/patchfns.in
+++ b/quilt/scripts/patchfns.in
@@ -998,7 +998,7 @@ setup_pager()
pager_fifo_dir="$(gen_tempfile -d)"
pager_fifo="$pager_fifo_dir/0"
mkfifo -m 600 "$pager_fifo"
- "$QUILT_PAGER" < "$pager_fifo" &
+ $QUILT_PAGER < "$pager_fifo" &
exec > "$pager_fifo"
add_exit_handler "exec >&-; rm $pager_fifo; rmdir $pager_fifo_dir; wait"
}