diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2014-02-21 16:14:51 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-02-21 16:05:02 +0100 |
commit | 74fae4240f670fe5a39a82a71abad367d18caefa (patch) | |
tree | ffc2d825ba6b945f5bb272768c5eeb7cf857567d /Makefile.am | |
parent | edbb03e95a3c31bf719d5c6c46eec14d0bcb9c8f (diff) |
build-sys: make network files respect --rootprefix
With --rootprefix= systemd-udevd gets installed to /lib/systemd, and since
the network configuration is also required during early boot, it should be
available there with it. Using --prefix= is not an option since it would
put everything, including pkg-config files, man pages, documentation, to /
which is not wanted. This commit puts 99-default.link to
/lib/systemd/network/ when required.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index f6c22bd281..1fc23f72f8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -87,7 +87,7 @@ userunitdir=$(prefix)/lib/systemd/user userpresetdir=$(prefix)/lib/systemd/user-preset tmpfilesdir=$(prefix)/lib/tmpfiles.d sysctldir=$(prefix)/lib/sysctl.d -networkdir=$(prefix)/lib/systemd/network +networkdir=$(rootprefix)/lib/systemd/network pkgincludedir=$(includedir)/systemd systemgeneratordir=$(rootlibexecdir)/system-generators usergeneratordir=$(prefix)/lib/systemd/user-generators |