diff options
author | Andrei Alexeyev <0x416b617269@gmail.com> | 2018-02-08 14:24:31 (GMT) |
---|---|---|
committer | Andrei Alexeyev <0x416b617269@gmail.com> | 2018-02-08 14:24:31 (GMT) |
commit | 86cc8f55cb4aa4c41cce04d4ca8cc6f39d281eda (patch) | |
tree | a36485978f448808f642bd439bd289efbdc7bed3 /plugins | |
parent | 1b7d2e0562f2ec93848f536d2a9d4cd414356d9e (diff) | |
download | mxe-86cc8f55cb4aa4c41cce04d4ca8cc6f39d281eda.zip mxe-86cc8f55cb4aa4c41cce04d4ca8cc6f39d281eda.tar.gz mxe-86cc8f55cb4aa4c41cce04d4ca8cc6f39d281eda.tar.bz2 |
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 |