View | Details | Raw Unified | Return to bug 19858 | Differences between
and this patch

Collapse All | Expand All

(-)mergemaster.sh (-1 / +1 lines)
Lines 252-258 Link Here
252
#
252
#
253
case "${DONT_CHECK_PAGER}" in
253
case "${DONT_CHECK_PAGER}" in
254
'')
254
'')
255
  while [ "${PAGER}" != "more" -a -n "${PAGER}" -a ! -x "${PAGER%% *}" ]; do
255
  while ! type "${PAGER%% *}" >/dev/null && [ -n "$PAGER" ]; do
256
    echo " *** Your PAGER environment variable specifies '${PAGER}', but"
256
    echo " *** Your PAGER environment variable specifies '${PAGER}', but"
257
    echo "     I cannot execute it. In general it is good practice to"
257
    echo "     I cannot execute it. In general it is good practice to"
258
    echo "     specify the full path for environment variables like"
258
    echo "     specify the full path for environment variables like"

Return to bug 19858