diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-09-11 16:34:12 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-09-11 16:34:12 -0400 |
commit | 4cf846e4626091efaa07b3381469df9e4624bb85 (patch) | |
tree | 77217304b008234fdb5e57be2190b1f783f4e1a8 /Makefile | |
parent | c233bd270e29059d660e66120fdca882bff17a5c (diff) |
be clearer about missing bzr support not failing the build/install
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -15,7 +15,7 @@ INSTALL_EXE=${INSTALL} -D INSTALL_DATA=${INSTALL} -m 0644 -D build: - -./etckeeper-bzr/__init__.py build + -./etckeeper-bzr/__init__.py build || echo "** bzr support not built" install: mkdir -p $(DESTDIR)$(etcdir)/etckeeper/ $(DESTDIR)$(vardir)/cache/etckeeper/ @@ -30,7 +30,8 @@ endif ifeq ($(LOWLEVEL_PACKAGE_MANAGER),pacman-g2) $(INSTALL_DATA) pacman-g2.hook $(DESTDIR)$(etcdir)/pacman-g2/hooks/etckeeper endif - -./etckeeper-bzr/__init__.py install --root=$(DESTDIR) + -./etckeeper-bzr/__init__.py install --root=$(DESTDIR) || echo "** bzr support not installed" + echo "** installation successful" clean: rm -rf build |