[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
patch for cvs-1.11 : location of pr
From: |
Urs Thuermann |
Subject: |
patch for cvs-1.11 : location of pr |
Date: |
26 Oct 2000 19:47:57 +0200 |
In cvs-1.11 the Makefile contains the location of pr hardcoded as
/bin/pr. However, many systems have it in /usr/bin/pr. The following
patch lets autoconf look for the pr program.
urs
diff -ru cvs-1.11/configure.in cvs/configure.in
--- cvs-1.11/configure.in Tue Aug 1 16:13:25 2000
+++ cvs/configure.in Mon Oct 23 11:00:40 2000
@@ -13,6 +13,7 @@
AC_PATH_PROG(perl_path, perl, no)
AC_PATH_PROG(csh_path, csh, no)
+AC_PATH_PROG(pr_path, pr, no)
AC_SYS_INTERPRETER
if test X"$ac_cv_sys_interpreter" != X"yes" ; then
diff -ru cvs-1.11/diff/Makefile.in cvs/diff/Makefile.in
--- cvs-1.11/diff/Makefile.in Thu May 6 16:32:55 1999
+++ cvs/diff/Makefile.in Mon Oct 23 11:00:40 2000
@@ -31,7 +31,7 @@
prefix = @prefix@
exec_prefix = @exec_prefix@
-PR_PROGRAM = /bin/pr
+PR_PROGRAM = @pr_path@
#### End of system configuration section. ####
- patch for cvs-1.11 : location of pr,
Urs Thuermann <=