diff options
Diffstat (limited to 'recipes-containers/lxcfs/files/systemd-allow-for-distinct-build-directory.patch')
| -rw-r--r-- | recipes-containers/lxcfs/files/systemd-allow-for-distinct-build-directory.patch | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/recipes-containers/lxcfs/files/systemd-allow-for-distinct-build-directory.patch b/recipes-containers/lxcfs/files/systemd-allow-for-distinct-build-directory.patch deleted file mode 100644 index 4d93cc3e..00000000 --- a/recipes-containers/lxcfs/files/systemd-allow-for-distinct-build-directory.patch +++ /dev/null | |||
| @@ -1,49 +0,0 @@ | |||
| 1 | From 66a71fbf94020651880f1dbb6e4663d93391b47c Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Mark Asselstine <mark.asselstine@windriver.com> | ||
| 3 | Date: Mon, 10 Sep 2018 13:14:07 -0400 | ||
| 4 | Subject: [PATCH] systemd: allow for distinct build directory | ||
| 5 | |||
| 6 | The Makefile.am is currently written in a way that doesn't allow for a | ||
| 7 | distinct build directory. As such we get the error: | ||
| 8 | |||
| 9 | install: cannot stat 'lxcfs.service': No such file or directory | ||
| 10 | |||
| 11 | Make use of $(srcdir) to correct this. | ||
| 12 | |||
| 13 | Upstream-Status: Inappropriate [embedded specific] | ||
| 14 | |||
| 15 | Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> | ||
| 16 | --- | ||
| 17 | config/init/systemd/Makefile.am | 2 +- | ||
| 18 | config/init/systemd/Makefile.in | 2 +- | ||
| 19 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
| 20 | |||
| 21 | diff --git a/config/init/systemd/Makefile.am b/config/init/systemd/Makefile.am | ||
| 22 | index 79e96f5..d6933f9 100644 | ||
| 23 | --- a/config/init/systemd/Makefile.am | ||
| 24 | +++ b/config/init/systemd/Makefile.am | ||
| 25 | @@ -5,7 +5,7 @@ SYSTEMD_UNIT_DIR = /lib/systemd/system | ||
| 26 | |||
| 27 | install-systemd: lxcfs.service | ||
| 28 | $(MKDIR_P) $(DESTDIR)$(SYSTEMD_UNIT_DIR) | ||
| 29 | - $(INSTALL_DATA) lxcfs.service $(DESTDIR)$(SYSTEMD_UNIT_DIR)/ | ||
| 30 | + $(INSTALL_DATA) $(srcdir)/lxcfs.service $(DESTDIR)$(SYSTEMD_UNIT_DIR)/ | ||
| 31 | |||
| 32 | uninstall-systemd: | ||
| 33 | rm -f $(DESTDIR)$(SYSTEMD_UNIT_DIR)/lxcfs.service | ||
| 34 | diff --git a/config/init/systemd/Makefile.in b/config/init/systemd/Makefile.in | ||
| 35 | index d433e8a..430190c 100644 | ||
| 36 | --- a/config/init/systemd/Makefile.in | ||
| 37 | +++ b/config/init/systemd/Makefile.in | ||
| 38 | @@ -450,7 +450,7 @@ uninstall-am: uninstall-local | ||
| 39 | |||
| 40 | @INIT_SCRIPT_SYSTEMD_TRUE@install-systemd: lxcfs.service | ||
| 41 | @INIT_SCRIPT_SYSTEMD_TRUE@ $(MKDIR_P) $(DESTDIR)$(SYSTEMD_UNIT_DIR) | ||
| 42 | -@INIT_SCRIPT_SYSTEMD_TRUE@ $(INSTALL_DATA) lxcfs.service $(DESTDIR)$(SYSTEMD_UNIT_DIR)/ | ||
| 43 | +@INIT_SCRIPT_SYSTEMD_TRUE@ $(INSTALL_DATA) $(srcdir)/lxcfs.service $(DESTDIR)$(SYSTEMD_UNIT_DIR)/ | ||
| 44 | |||
| 45 | @INIT_SCRIPT_SYSTEMD_TRUE@uninstall-systemd: | ||
| 46 | @INIT_SCRIPT_SYSTEMD_TRUE@ rm -f $(DESTDIR)$(SYSTEMD_UNIT_DIR)/lxcfs.service | ||
| 47 | -- | ||
| 48 | 2.7.4 | ||
| 49 | |||
