fix "make install"

There seems to be a problem introduced by
8b3c67690c that causes "make install"
to fail when the build is not configured to skip doc building.
This commit is contained in:
David Creswick 2014-12-31 16:20:54 -06:00
parent 84f5ad8679
commit 714a2c678c
1 changed files with 4 additions and 0 deletions

View File

@ -28,7 +28,11 @@ endif
# Remove tmp files because it's a decent amount of disk space
$(Q)rm -R tmp/dist
ifeq ($(CFG_DISABLE_DOCS),)
prepare_install: dist/$(PKG_NAME)-$(CFG_BUILD).tar.gz dist/$(DOC_PKG_NAME)-$(CFG_BUILD).tar.gz | tmp/empty_dir
else
prepare_install: dist/$(PKG_NAME)-$(CFG_BUILD).tar.gz | tmp/empty_dir
endif
uninstall:
ifeq (root user, $(USER) $(patsubst %,user,$(SUDO_USER)))