← Back to team overview

cloud-init-dev team mailing list archive

[Merge] ~smoser/cloud-init:fix/makefile-not-find-bin into cloud-init:master

 

Scott Moser has proposed merging ~smoser/cloud-init:fix/makefile-not-find-bin into cloud-init:master.

Commit message:
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.

Requested reviews:
  cloud-init commiters (cloud-init-dev)

For more details, see:
https://code.launchpad.net/~smoser/cloud-init/+git/cloud-init/+merge/330954

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.

-- 
Your team cloud-init commiters is requested to review the proposed merge of ~smoser/cloud-init:fix/makefile-not-find-bin into cloud-init:master.
diff --git a/Makefile b/Makefile
index 9e7f4ee..7feea40 100644
--- a/Makefile
+++ b/Makefile
@@ -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

References