diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-04-27 22:46:24 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-05-05 15:47:28 +0200 |
commit | fa557f1f5d124d583d4241b72f440a09b6714fc4 (patch) | |
tree | 7e509dbee739bb7ed3f7d680bea5e7900ad15649 /debian/rules | |
parent | fa0b50e747e8be0b3ac17367efdf11b8c8f3fcd5 (diff) | |
download | ayatana-indicator-datetime-fa557f1f5d124d583d4241b72f440a09b6714fc4.tar.gz ayatana-indicator-datetime-fa557f1f5d124d583d4241b72f440a09b6714fc4.tar.bz2 ayatana-indicator-datetime-fa557f1f5d124d583d4241b72f440a09b6714fc4.zip |
debian/rules: Adjust previous commit to renamed ENABLE_TESTS build option.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/debian/rules b/debian/rules index 0a1b6f7..96adb33 100755 --- a/debian/rules +++ b/debian/rules @@ -5,12 +5,10 @@ LDFLAGS += -Wl,-z,defs -Wl,--as-needed %: dh $@ --with systemd -ifneq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) +ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) override_dh_auto_configure: - dh_auto_configure -- -Denable_tests=OFF + dh_auto_configure -- -DENABLE_TESTS=ON endif override_dh_install: dh_install --fail-missing - - |