summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2007-02-08 19:14:29 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2007-02-08 19:14:29 +0000
commit7b4d33bbddbcc05fa7c31b2275e8f1bb2e516a75 (patch)
tree9af8cd8147973bd1ea0229d2cc8bfc48e45d1cde /configure.in
parent3d54048d526e48cdf0ef4f8d4a8a7ed10cb14d13 (diff)
Make sure INSTALL command uses absolute path for install-sh...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5676 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 5 insertions, 0 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"