Ubuntu 16 support (#3251)

This commit is contained in:
Graham Mainwaring
2016-08-16 13:41:23 -04:00
committed by GitHub
parent ae1af93551
commit d51edff8a8
2 changed files with 5 additions and 2 deletions

1
.gitignore vendored
View File

@@ -31,6 +31,7 @@ setup/test/roles/postgresql
__pycache__ __pycache__
/build /build
/deb-build /deb-build
/reprepro
/rpm-build /rpm-build
/tar-build /tar-build
/setup-bundle-build /setup-bundle-build

View File

@@ -81,7 +81,7 @@ SETUP_TAR_CHECKSUM=$(NAME)-setup-CHECKSUM
# DEB build parameters # DEB build parameters
DEBUILD_BIN ?= debuild DEBUILD_BIN ?= debuild
DEBUILD_OPTS = --source-option="-I" DEBUILD_OPTS =
DPUT_BIN ?= dput DPUT_BIN ?= dput
DPUT_OPTS ?= -c .dput.cf -u DPUT_OPTS ?= -c .dput.cf -u
REPREPRO_BIN ?= reprepro REPREPRO_BIN ?= reprepro
@@ -788,7 +788,9 @@ debian: deb-build/$(DEB_TAR_NAME)
endif endif
deb-build/$(DEB_NVR).dsc: deb-build/$(DEB_TAR_NAME) deb-build/$(DEB_NVR).dsc: deb-build/$(DEB_TAR_NAME)
cd deb-build/$(DEB_TAR_NAME) && $(DEBUILD) -S cd deb-build/$(DEB_TAR_NAME) && \
cp debian/control.$(DEB_DIST) debian/control && \
$(DEBUILD) -S
deb-src: deb-build/$(DEB_NVR).dsc deb-src: deb-build/$(DEB_NVR).dsc
@echo "#############################################" @echo "#############################################"