diff options
author | Tony Theodore <tonyt@logyst.com> | 2018-02-17 01:21:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-17 01:21:35 (GMT) |
commit | f8855ec4ac6a7571dd50e66d18cd69cc63e58186 (patch) | |
tree | 7260bce9618c36e64374c9d4f9fce39d3e9f7687 /plugins | |
parent | fd06fb34d07459c574b8e9f71dac07782f8c6508 (diff) | |
parent | 86cc8f55cb4aa4c41cce04d4ca8cc6f39d281eda (diff) | |
download | mxe-f8855ec4ac6a7571dd50e66d18cd69cc63e58186.zip mxe-f8855ec4ac6a7571dd50e66d18cd69cc63e58186.tar.gz mxe-f8855ec4ac6a7571dd50e66d18cd69cc63e58186.tar.bz2 |
Merge pull request #2049 from taisei-project/fix-meson-wrapper
plugins/meson-wrapper: fix missing build dependency cmake-conf
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/meson-wrapper/meson-wrapper.mk | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/plugins/meson-wrapper/meson-wrapper.mk b/plugins/meson-wrapper/meson-wrapper.mk index 81f2a83..094baf2 100644 --- a/plugins/meson-wrapper/meson-wrapper.mk +++ b/plugins/meson-wrapper/meson-wrapper.mk @@ -1,10 +1,11 @@ # This file is part of MXE. See LICENSE.md for licensing information. -PKG := meson-wrapper -$(PKG)_VERSION := 1 -$(PKG)_UPDATE := echo 1 -$(PKG)_TARGETS := $(MXE_TARGETS) +PKG := meson-wrapper +$(PKG)_VERSION := 1 +$(PKG)_UPDATE := echo 1 +$(PKG)_TARGETS := $(MXE_TARGETS) $(PKG)_FILE_DEPS := $(wildcard $(PWD)/plugins/meson-wrapper/conf/*) +$(PKG)_DEPS := cmake-conf define $(PKG)_BUILD # create the Meson cross file |