Hello,

* Patrick M. Rutkowski wrote on Wed, Mar 10, 2010 at 11:02:14AM CET:
> [01:55am] rutski: but if I edit a library header and re-run "make
> install" on the lib then it reinstalls _all_ the headers

-C is more useful than -p.  With coreutils >= 7.1:
  make install INSTALL='install -C'

otherwise, with an install-sh from Automake >= 1.11:
  make install INSTALL='/absolute/path/to/install-sh -C'

You might need to adjust the install_sh variable as well.

For non-GNU make, of course use something like
  env INSTALL=... make -e

instead.

Cheers,
Ralf


_______________________________________________
Autoconf mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/autoconf

Reply via email to