diff options
author | Roland McGrath <roland@gnu.org> | 2001-11-24 22:05:37 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-11-24 22:05:37 +0000 |
commit | d2e1c9b5e6a897dfce094a7d43f767a8fb760295 (patch) | |
tree | 6f2f3c3c5091fcb4ed76b52dd5e914151c1a35f4 /config.make.in | |
parent | b6c68a1f18fa72ee1b7e093a28fda2c41417209e (diff) |
2001-11-24 Roland McGrath <roland@frob.com>
* config.make.in (bootdir): New variable, set to $(exec_prefix)/boot.
(installationdirlist): Add $(bootdir) to the list.
From Alfred M. Szmidt <ams@kemisten.nu>.
Diffstat (limited to 'config.make.in')
-rw-r--r-- | config.make.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.make.in b/config.make.in index a7fcd4ea..0735dcac 100644 --- a/config.make.in +++ b/config.make.in @@ -20,6 +20,7 @@ bindir = $(exec_prefix)/bin sbindir = $(exec_prefix)/sbin includedir = $(exec_prefix)/include libexecdir = $(exec_prefix)/libexec +bootdir = $(exec_prefix)/boot infodir = $(prefix)/info sysconfdir = $(prefix)/etc localstatedir = $(prefix)/var @@ -27,7 +28,7 @@ sharedstatedir = $(prefix)/com # All of those directories together: installationdirlist = $(hurddir) $(libdir) $(bindir) $(sbindir) \ - $(includedir) $(libexecdir) $(infodir) $(sysconfdir) \ + $(includedir) $(libexecdir) $(bootdir) $(infodir) $(sysconfdir) \ $(localstatedir) $(sharedstatedir) |