diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-03-04 00:34:37 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-03-04 00:34:37 -0500 |
commit | 9b0cbf54a90d2434e2a93e34664646ee8638fc97 (patch) | |
tree | 91bb7977e00c18d955c1b5a10a366bdb94422295 /packages/debian/rules.in | |
parent | ea5ffb88f2d3b5f55699955520012596de1d8af5 (diff) | |
download | vyos-cloud-init-9b0cbf54a90d2434e2a93e34664646ee8638fc97.tar.gz vyos-cloud-init-9b0cbf54a90d2434e2a93e34664646ee8638fc97.zip |
fix packages/debian/rules.in
Diffstat (limited to 'packages/debian/rules.in')
-rwxr-xr-x | packages/debian/rules.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/debian/rules.in b/packages/debian/rules.in index 988b5bc7..5420949c 100755 --- a/packages/debian/rules.in +++ b/packages/debian/rules.in @@ -12,9 +12,11 @@ override_dh_install: install -d debian/cloud-init/etc/rsyslog.d cp tools/21-cloudinit.conf debian/cloud-init/etc/rsyslog.d/21-cloudinit.conf -ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) override_dh_auto_test: +ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) http_proxy= make check +else + @echo check disabled by DEB_BUILD_OPTIONS=$(DEB_BUILD_OPTIONS) endif override_dh_systemd_start: |