diff options
-rwxr-xr-x | debian/rules | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index dd9063b..10bd6f4 100755 --- a/debian/rules +++ b/debian/rules @@ -1,4 +1,17 @@ #!/usr/bin/make -f +NULL= + +export DEB_BUILD_MAINT_OPTIONS = hardening=+all +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/buildflags.mk + %: - dh $@ --with autoreconf + dh $@ + +override_dh_auto_configure: + dh_auto_configure $(DHFLAGS) -- \ + --disable-silent-rules \ + --enable-x2go \ + --enable-ogon \ + $(NULL) |