diff options
| -rw-r--r-- | configure.in | 5 | ||||
| -rwxr-xr-x | install-sh | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 70e9064d4..1d9d576c6 100644 --- a/configure.in +++ b/configure.in @@ -265,8 +265,13 @@ dnl Find commands... AC_PROG_CC AC_PROG_CXX AC_PROG_INSTALL +if test "$INSTALL" = "$ac_install_sh"; then + # Use full path to install-sh script... + INSTALL="`pwd`/install-sh -c" +fi AC_PATH_PROG(NROFF,nroff) if test "x$NROFF" = "x:"; then + # Try groff instead of nroff... AC_PATH_PROG(GROFF,groff) if test "x$GROFF" = "x:"; then NROFF="echo" diff --git a/install-sh b/install-sh index 89fc9b098..ab74c882e 100755 --- a/install-sh +++ b/install-sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # # install - install a program, script, or datafile # This comes from X11R5. |
