Fixed debian sources for SPDY to HTTP2 transition.
diff --git a/debian/rules b/debian/rules index 38dfa3e..cc9225b 100755 --- a/debian/rules +++ b/debian/rules
@@ -3,9 +3,9 @@ #export DH_VERBOSE=1 CFLAGS ?= $(shell dpkg-buildflags --get CFLAGS) LDFLAGS ?= $(shell dpkg-buildflags --get LDFLAGS) -WITH_SPDY := $(shell printf "Source: nginx\nBuild-Depends: libssl-dev (>= 1.0.1)\n" | \ +WITH_HTTP2 := $(shell printf "Source: nginx\nBuild-Depends: libssl-dev (>= 1.0.1)\n" | \ dpkg-checkbuilddeps - >/dev/null 2>&1 && \ - echo "--with-http_spdy_module") + echo "--with-http_v2_module") %: dh $@ @@ -52,7 +52,7 @@ --with-mail \ --with-mail_ssl_module \ --with-file-aio \ - $(WITH_SPDY) \ + $(WITH_HTTP2) \ --with-cc-opt="$(CFLAGS)" \ --with-ld-opt="$(LDFLAGS)" \ --with-ipv6 @@ -93,7 +93,7 @@ --with-mail \ --with-mail_ssl_module \ --with-file-aio \ - $(WITH_SPDY) \ + $(WITH_HTTP2) \ --with-cc-opt="$(CFLAGS)" \ --with-ld-opt="$(LDFLAGS)" \ --with-ipv6 \