diff options
author | Roland McGrath <roland@hack.frob.com> | 2011-07-05 09:57:47 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2011-07-05 09:57:47 -0700 |
commit | 751eb97ef2d281711f47fbef70b59b65f7bc6959 (patch) | |
tree | cbf76f259f4adaf0c812367b391d186da7bcbbcd | |
parent | f15f1e45ba281568cb77d4e10de574ee2b86f2a6 (diff) | |
download | glibc-751eb97ef2d281711f47fbef70b59b65f7bc6959.zip glibc-751eb97ef2d281711f47fbef70b59b65f7bc6959.tar.gz glibc-751eb97ef2d281711f47fbef70b59b65f7bc6959.tar.bz2 |
Default install_root value from DESTDIR.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | config.make.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2011-07-05 Roland McGrath <roland@hack.frob.com> + + * config.make.in (install_root): Default to $(DESTDIR). + 2011-07-05 Ulrich Drepper <drepper@gmail.com> * nscd/nscd_getserv_r.c (nscd_getserv_r): Add cast to avoid warning. diff --git a/config.make.in b/config.make.in index 6e876eb..b73b21e 100644 --- a/config.make.in +++ b/config.make.in @@ -5,7 +5,7 @@ version = @VERSION@ release = @RELEASE@ # Installation prefixes. -install_root = +install_root = $(DESTDIR) prefix = @prefix@ exec_prefix = @exec_prefix@ datadir = @datadir@ |