diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2016-05-24 22:02:09 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-05-24 22:12:18 +0200 |
commit | be8270d3e3b153c95926446081897c4bfc44ef81 (patch) | |
tree | 40392938d605540e46a85b2748dfc8168dfa8888 /package | |
parent | 20b3ed7408dd106b5d6d64ab0683e493537b7411 (diff) | |
download | buildroot-be8270d3e3b153c95926446081897c4bfc44ef81.tar.gz buildroot-be8270d3e3b153c95926446081897c4bfc44ef81.zip |
package/skeleton: fix message about non-merged custom skeleton
Use of a merged /usr is not restricted to systemd anymore, thus the
current error message is misleading, as it only speaks about systemd.
Fix the message by just ditching the reference to systemd altogether.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/skeleton/skeleton.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/skeleton/skeleton.mk b/package/skeleton/skeleton.mk index 7618835671..4e3cdc68df 100644 --- a/package/skeleton/skeleton.mk +++ b/package/skeleton/skeleton.mk @@ -48,8 +48,7 @@ SKELETON_CUSTOM_NOT_MERGED_USR += /sbin endif ifneq ($(SKELETON_CUSTOM_NOT_MERGED_USR),) -$(error Use of systemd as an init system requires a merged /usr. \ - However, the custom skeleton in $(SKELETON_PATH) is not \ +$(error The custom skeleton in $(SKELETON_PATH) is not \ using a merged /usr for the following directories: \ $(SKELETON_CUSTOM_NOT_MERGED_USR)) endif |