From dd76fe3ccd435491a7f07fe5f44c3d3bcd00bec5 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 24 Oct 2018 21:34:36 +0200 Subject: [PATCH] build: fix build_clean.sh script to enable ibft autotools build has/had a bug, where ibft test files would only be disted if the ibft plugin was enabled. Regardless of that, `build_clean.sh --release` is our suggested way to create a release tarball. It should always enable the ibft plugin. It didn't do so, due to a bug. (cherry picked from commit b660a41c7c3d77aa122b92b93dcd0624470f3301) --- contrib/fedora/rpm/build_clean.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/fedora/rpm/build_clean.sh b/contrib/fedora/rpm/build_clean.sh index 4ceedf40ac..c486be5129 100755 --- a/contrib/fedora/rpm/build_clean.sh +++ b/contrib/fedora/rpm/build_clean.sh @@ -151,7 +151,7 @@ if [[ $NO_DIST != 1 ]]; then --with-libnm-glib \ --enable-ifcfg-rh \ --enable-ifupdown \ - --enable-ibft \ + --enable-config-plugin-ibft \ --with-config-logging-backend-default=syslog \ --with-libaudit=yes-disabled-by-default \ --enable-polkit=yes \