From 7751c2eae8fced2ab20da4fcdc1bc9ce72b643ec Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 17 Apr 2015 09:49:54 -0400 Subject: [PATCH] Build pkgloader as part of "make all" pkgloader was not built as part of "make all", only indirectly as part of "make install". As a result, if one runs "sudo make install", the "build" subdirectory of the source tree becomes owned by root, which can lead to annoyance. Therefore, build pkgloader during "make all", similar to the skytools package. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 78477efe..8c9af5fc 100644 --- a/Makefile +++ b/Makefile @@ -26,6 +26,7 @@ sub-all sub-install sub-clean sub-distclean: .PHONY: sub-all sub-clean sub-install sub-distclean python-all: config.mak + $(PYTHON) setup_pkgloader.py build $(PYTHON) setup_skytools.py build clean: sub-clean