From cd87bd48de1f6f381a0ed3957b25a84440624b09 Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Fri, 12 Feb 2016 00:09:44 +0700 Subject: [PATCH] ceph-disk,ceph-detect-init: clean the build directory b030d8fc113736b479e84246b6b36d5f698a2da3 should have kept the build directory in .gitignore and the clean target. Re-adding. Signed-off-by: Loic Dachary --- src/ceph-detect-init/.gitignore | 1 + src/ceph-detect-init/Makefile.am | 2 +- src/ceph-disk/.gitignore | 1 + src/ceph-disk/Makefile.am | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ceph-detect-init/.gitignore b/src/ceph-detect-init/.gitignore index dfb9bc7b56781..1bcbb562700df 100644 --- a/src/ceph-detect-init/.gitignore +++ b/src/ceph-detect-init/.gitignore @@ -7,6 +7,7 @@ *.egg dist virtualenv +build wheelhouse* *.log *.trs diff --git a/src/ceph-detect-init/Makefile.am b/src/ceph-detect-init/Makefile.am index ccc9def9d926d..0c8372f3c75d0 100644 --- a/src/ceph-detect-init/Makefile.am +++ b/src/ceph-detect-init/Makefile.am @@ -59,7 +59,7 @@ ceph-detect-init/virtualenv: cd $(srcdir)/ceph-detect-init ; ../tools/setup-virtualenv.sh ; test -d wheelhouse && export NO_INDEX=--no-index ; virtualenv/bin/pip install $$NO_INDEX --use-wheel --find-links=file://$$(pwd)/wheelhouse -e . ceph-detect-init-clean: - cd $(srcdir)/ceph-detect-init ; python setup.py clean ; rm -fr wheelhouse .tox virtualenv .coverage *.egg-info + cd $(srcdir)/ceph-detect-init ; python setup.py clean ; rm -fr wheelhouse .tox build virtualenv .coverage *.egg-info ceph-detect-init-install-data: cd $(srcdir)/ceph-detect-init ; \ diff --git a/src/ceph-disk/.gitignore b/src/ceph-disk/.gitignore index dfb9bc7b56781..1bcbb562700df 100644 --- a/src/ceph-disk/.gitignore +++ b/src/ceph-disk/.gitignore @@ -7,6 +7,7 @@ *.egg dist virtualenv +build wheelhouse* *.log *.trs diff --git a/src/ceph-disk/Makefile.am b/src/ceph-disk/Makefile.am index 7e4947fe03861..ec3ea5de2a4ac 100644 --- a/src/ceph-disk/Makefile.am +++ b/src/ceph-disk/Makefile.am @@ -35,7 +35,7 @@ ceph-disk/virtualenv: cd $(srcdir)/ceph-disk ; ../tools/setup-virtualenv.sh ; test -d wheelhouse && export NO_INDEX=--no-index ; virtualenv/bin/pip install $$NO_INDEX --use-wheel --find-links=file://$$(pwd)/wheelhouse -e . ceph-disk-clean: - cd $(srcdir)/ceph-disk ; python setup.py clean ; rm -fr wheelhouse .tox virtualenv .coverage *.egg-info + cd $(srcdir)/ceph-disk ; python setup.py clean ; rm -fr wheelhouse .tox build virtualenv .coverage *.egg-info ceph-disk-install-data: cd $(srcdir)/ceph-disk ; \ -- 2.39.5