diff options
author | Glenn Morris <rgm@gnu.org> | 2012-06-27 19:57:56 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-06-27 19:57:56 -0400 |
commit | 0b6b25d572d246164957f676586d10a06ada9b5e (patch) | |
tree | 1e59338968cd4bd60bc4d79fe6fa7430ed97120d /configure.in | |
parent | 04901786943c00a9d2077d39ecbd2ac5c6f54b5f (diff) | |
download | emacs-0b6b25d572d246164957f676586d10a06ada9b5e.tar.gz |
* configure.in: Only check for paxctl on gnu-linux.
http://debbugs.gnu.org/11398#26
NetBSD has a "paxctl" that does not support the same options
as the GNU/Linux version...
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in index d85a64aa749..92114118874 100644 --- a/configure.in +++ b/configure.in @@ -699,9 +699,11 @@ AC_PATH_PROG(INSTALL_INFO, install-info, :, $PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin) dnl Don't use GZIP, which is used by gzip for additional parameters. AC_PATH_PROG(GZIP_PROG, gzip) -AC_PATH_PROG(PAXCTL, paxctl,, - [$PATH$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/sbin]) +if test $opsys = gnu-linux; then + AC_PATH_PROG(PAXCTL, paxctl,, + [$PATH$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/sbin]) +fi ## Need makeinfo >= 4.7 (?) to build the manuals. AC_PATH_PROG(MAKEINFO, makeinfo, no) |