From: Vincent Bernat Date: Mon, 23 Nov 2015 07:42:04 +0000 (+0100) Subject: debian: don't try to support older distributions X-Git-Tag: 0.8.0~35 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2e35d6bd6f7d7fc9eca2ba5621884d8cbea4c41b;p=thirdparty%2Flldpd.git debian: don't try to support older distributions They are not supported due to the dependency on libnl3. Either we fix the dependency to be optional or we don't need that stuff in debian/rules. --- diff --git a/debian/rules b/debian/rules index 9aaa807b..854c11fd 100755 --- a/debian/rules +++ b/debian/rules @@ -5,10 +5,4 @@ include /usr/share/cdbs/1/rules/autoreconf.mk include /usr/share/cdbs/1/class/autotools.mk DEB_CONFIGURE_EXTRA_FLAGS = --with-snmp --with-xml --with-json - -distrel := $(shell lsb_release --codename --short) -ifneq (,$(filter $(distrel),lucid lenny etch squeeze)) - DEB_CONFIGURE_EXTRA_FLAGS += --enable-oldies -else - DEB_CONFIGURE_EXTRA_FLAGS += --with-systemdsystemunitdir=/lib/systemd/system -endif +DEB_CONFIGURE_EXTRA_FLAGS += --with-systemdsystemunitdir=/lib/systemd/system