autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: System files and "make distcheck"


From: cwr
Subject: Re: System files and "make distcheck"
Date: Sat, 02 Jul 2011 10:13:02 +0100
User-agent: Internet Messaging Program (IMP) H3 (4.3.7)

Quoting Ralf Wildenhues <address@hidden>:

* address@hidden wrote on Mon, Jun 27, 2011 at 01:08:29PM CEST:
It looks as if the standard GNU installation method would require
every user to run ./configure --sysconfdir=/etc, whereas most would
just try the usual ./configure && make.  Given the choice between
a convenient installation for the user, and a working distcheck, I
think I'll have to take the convenient installation.

You can have both.  At the least, you shouldn't override explicit user
wishes.

configure defaults sysconfdir to '${prefix}/etc', so you could override
it to /etc if prefix is /usr and sysconfdir has not been overridden by
the user:

AC_INIT
if test "$prefix" = / && test "$sysconfdir" = '${prefix}/etc'; then
  sysconfdir=/etc
  AS_MSG_NOTICE([overriding sysconfdir to $sysconfdir])
fi

Yup, that works.  The problem was that I didn't really grasp the way you can
merge Autoconf and shell code.  Finally I've got a setup which has reasonable
defaults, and which can be overridden by the user.

Many thanks - Will






reply via email to

[Prev in Thread] Current Thread [Next in Thread]