diff options
author | Filipe Brandenburger <filbranden@google.com> | 2014-06-19 11:59:35 -0700 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-06-20 00:25:04 +0200 |
commit | ab2bc6feee7022cea057f8e00f513f7dba962c74 (patch) | |
tree | fc842904d821f069677fbb1e3ac5b6eb3ccd0fa2 | |
parent | 302c9d6c8b4f778240c29a08060c037c6b6211a0 (diff) |
sd-dhcp6-client: fix path of sd-icmp6-nd.h in Makefile.am
It was incorrectly looking for a file in src/libsystemd-network/ when the file was actually deployed to src/systemd/ instead. This broke "make dist".
Tested: "make dist" works again after this patchset is applied.
Fixes: f20a35cc0d537dd4cfc1054cf7936b04a1700f3a
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 004f5e743a..caee5c93df 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2666,7 +2666,7 @@ test_ipv4ll_LDADD = \ test_icmp6_rs_SOURCES = \ src/systemd/sd-dhcp6-client.h \ - src/libsystemd-network/sd-icmp6-nd.h \ + src/systemd/sd-icmp6-nd.h \ src/libsystemd-network/dhcp6-internal.h \ src/libsystemd-network/test-icmp6-rs.c |