diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-01 14:50:48 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-01 14:50:48 -0400 |
commit | 8ab6d6ae4a1fbefe7c772a8513e5d5a38f49a302 (patch) | |
tree | 20000a90a738370fff9e44c5e8fbaccea08e949c /src/systemd-rfkill | |
parent | 7308e9ffd1933c71e6134e1b9632683977a12f47 (diff) | |
parent | db51244983a38d901fefd5e2a090f0e66343d98d (diff) |
Merge branch 'lukeshu/postmove' into lukeshu/master
# Conflicts:
# am-pretty.mk
# config.mk.in
# src/journal/Makefile
# src/kernel-install/Makefile
# src/libbasic/Makefile
# src/libfirewall/Makefile
# src/libshared/Makefile
# src/libsystemd/Makefile
# src/libsystemd/libsystemd-internal/Makefile
# src/libsystemd/libsystemd-journal-internal/Makefile
# src/libsystemd/src/Makefile
# src/systemd-nspawn/Makefile
# src/systemd-nspawn/nspawn-network.c
# src/udev/udev.h
Diffstat (limited to 'src/systemd-rfkill')
-rw-r--r-- | src/systemd-rfkill/Makefile | 4 | ||||
-rw-r--r-- | src/systemd-rfkill/rfkill.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/systemd-rfkill/Makefile b/src/systemd-rfkill/Makefile index 2ec5e136e0..331ecb7130 100644 --- a/src/systemd-rfkill/Makefile +++ b/src/systemd-rfkill/Makefile @@ -20,6 +20,9 @@ # # You should have received a copy of the GNU Lesser General Public License # along with systemd; If not, see <http://www.gnu.org/licenses/>. +include $(dir $(lastword $(MAKEFILE_LIST)))/../../config.mk +include $(topsrcdir)/build-aux/Makefile.head.mk + ifneq ($(ENABLE_RFKILL),) rootlibexec_PROGRAMS += \ systemd-rfkill @@ -40,3 +43,4 @@ endif EXTRA_DIST += \ units/systemd-rfkill.service.in +include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-rfkill/rfkill.c b/src/systemd-rfkill/rfkill.c index 0acdf229ed..f0b0ad9275 100644 --- a/src/systemd-rfkill/rfkill.c +++ b/src/systemd-rfkill/rfkill.c @@ -21,7 +21,7 @@ #include <poll.h> #include "libudev.h" -#include "sd-daemon.h" +#include <systemd/sd-daemon.h> #include "alloc-util.h" #include "escape.h" |