diff options
| author | Peter Korsgaard <peter@korsgaard.com> | 2015-10-03 17:06:46 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2015-10-03 17:06:46 +0200 |
| commit | d6d1848c89afd0001b5419f5f1e8983c6cf83b91 (patch) | |
| tree | 38a74b568d9b9e11e47ad6ca4f53920bb55e8393 | |
| parent | 02d9a379f4faaa71752ccef4c5437a64e7b05af7 (diff) | |
| download | buildroot-d6d1848c89afd0001b5419f5f1e8983c6cf83b91.tar.gz buildroot-d6d1848c89afd0001b5419f5f1e8983c6cf83b91.zip | |
swupdate: provide sensible error message if no config file is specified
Similar to how we do it for the other kconfig packages.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| -rw-r--r-- | package/swupdate/swupdate.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/package/swupdate/swupdate.mk b/package/swupdate/swupdate.mk index 86bbf14314..9338fc83cd 100644 --- a/package/swupdate/swupdate.mk +++ b/package/swupdate/swupdate.mk @@ -103,4 +103,12 @@ define SWUPDATE_INSTALL_TARGET_CMDS cp -dpf $(@D)/www/* $(TARGET_DIR)/var/www/swupdate) endef +# Checks to give errors that the user can understand +# Must be before we call to kconfig-package +ifeq ($(BR2_PACKAGE_SWUPDATE)$(BR_BUILDING),yy) +ifeq ($(call qstrip,$(BR2_PACKAGE_SWUPDATE_CONFIG)),) +$(error No Swupdate configuration file specified, check your BR2_PACKAGE_SWUPDATE_CONFIG setting) +endif +endif + $(eval $(kconfig-package)) |

