diff options
| author | Scott Moser <smoser@brickies.net> | 2017-09-20 15:47:04 -0600 |
|---|---|---|
| committer | Chad Smith <chad.smith@canonical.com> | 2017-09-20 15:47:04 -0600 |
| commit | 82b2da3a56680b43df00ed31837b8650b5971656 (patch) | |
| tree | 90da987fdc79927dd0369fec0bce91b474571ac3 | |
| parent | 7a2d4cc8bfbbc3b4386cee6333a966acd09e9c74 (diff) | |
| download | vyos-cloud-init-82b2da3a56680b43df00ed31837b8650b5971656.tar.gz vyos-cloud-init-82b2da3a56680b43df00ed31837b8650b5971656.zip | |
Makefile: No longer look for yaml files in obsolete ./bin/.
The bin/ dir was deleted some time ago, but the Makefile was still
searching for files down it. This didn't cause any problems other Than a
wierd looking error message in a build log.
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ PYVER ?= $(shell for p in python3 python2; do \ noseopts ?= -v -YAML_FILES=$(shell find cloudinit bin tests tools -name "*.yaml" -type f ) +YAML_FILES=$(shell find cloudinit tests tools -name "*.yaml" -type f ) YAML_FILES+=$(shell find doc/examples -name "cloud-config*.txt" -type f ) PIP_INSTALL := pip install |
