Syntax error for assignment of FDUPES_ACT in configure and configure.ac
Brought to you by:
edscott
When executing configure, the following error message appears
/bin/sh /usr/src/build/libdbh2-5.0.22/configure --enable-gtk-doc --prefix="/usr/local"
/usr/src/build/libdbh2-5.0.22/configure: line 2938: FDUPES_ACT: command not found
The problem is that this line is intended to be an empty assignment but is missing the equals sign which is aslo missing in configure.ac, so the patch to apply is
--- configure.ac.orig 2016-09-22 16:18:21.000000000 +0100
+++ configure.ac 2016-09-22 16:18:21.000000000 +0100
@@ -71,7 +71,7 @@
RPM_LICENSE="GPLv3"
RPM_GROUP="Development tools"
RPM_FDUPES_REQUIRES=
- FDUPES_ACT
+ FDUPES_ACT=
PKG_CONFIG_FILE="%{_datadir}/pkgconfig/dbh2.pc"
CENTOS_OPTION="--with-centos=yes"
RPM_PKG_CONFIG="pkgconfig"
and then run autogen.sh to create the corrected configure script.
fixed in git revision a628509..7578fe2