diff options
| author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-11-16 15:04:33 +0100 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2014-11-16 22:48:15 +0100 |
| commit | 08c6909b711d516981f2f8225483d07473ca8220 (patch) | |
| tree | 8b144d57f6427d0b75566d6d5d03e23ba1c65e83 /package/duma | |
| parent | aad7a8fa7fe516605fbd2578c25d53538b74992f (diff) | |
| download | buildroot-08c6909b711d516981f2f8225483d07473ca8220.tar.gz buildroot-08c6909b711d516981f2f8225483d07473ca8220.zip | |
package/duma: add missing define when installing
Commit 3ab9774 (package/duma: do not let Makefile guess OS) added a
define to not let duma's build system guess the OS, mostly to avoid a
warning, but forgot to add that same define to the install commands.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/duma')
| -rw-r--r-- | package/duma/duma.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/duma/duma.mk b/package/duma/duma.mk index 6e730f9766..5e862ab25e 100644 --- a/package/duma/duma.mk +++ b/package/duma/duma.mk @@ -25,11 +25,11 @@ define DUMA_BUILD_CMDS endef define DUMA_INSTALL_STAGING_CMDS - $(MAKE) prefix=$(STAGING_DIR)/usr install -C $(@D) + $(MAKE) OS=linux prefix=$(STAGING_DIR)/usr install -C $(@D) endef define DUMA_INSTALL_TARGET_CMDS - $(MAKE) prefix=$(TARGET_DIR)/usr install -C $(@D) + $(MAKE) OS=linux prefix=$(TARGET_DIR)/usr install -C $(@D) endef $(eval $(generic-package)) |

