Control: tag -1 +patch

On Wed, 12 Sep 2018 10:35:11 +0300 Adrian Bunk <b...@debian.org> wrote:
> Source: rsbackup
> Version: 5.0-2
> Severity: serious
> Tags: ftbfs
> 
> https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/rsbackup.html
> 
> ...
> /usr/bin/make
> make[1]: Entering directory '/build/1st/rsbackup-5.0'
> CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash 
> /build/1st/rsbackup-5.0/config.aux/missing aclocal-1.15 
> /build/1st/rsbackup-5.0/config.aux/missing: line 81: aclocal-1.15: command 
> not found
> WARNING: 'aclocal-1.15' is missing on your system.
>          You should only need it if you modified 'acinclude.m4' or
>          'configure.ac' or m4 files included by 'configure.ac'.
>          The 'aclocal' program is part of the GNU Automake package:
>          <http://www.gnu.org/software/automake>
>          It also requires GNU Autoconf, GNU m4 and Perl in order to run:
>          <http://www.gnu.org/software/autoconf>
>          <http://www.gnu.org/software/m4/>
>          <http://www.perl.org/>
> make[1]: *** [Makefile:394: aclocal.m4] Error 127

Hi,

it seems that this can be fixed by running autogen.sh prior to ./configuring.
autogen.sh doesn't seem to have the executable bit set, so I used
"/bin/sh autogen.sh" instead of "./autogen.sh".

I used "cowbuilder --build --twice" to see that building twice in a row works.


Juhani
diff -u rsbackup-5.0/debian/rules rsbackup-5.0/debian/rules
--- rsbackup-5.0/debian/rules
+++ rsbackup-5.0/debian/rules
@@ -31,7 +31,7 @@
 build-arch: build
 build-indep: build
 build:
-	[ -e configure ] || ./autogen.sh
+	/bin/sh autogen.sh
 	./configure --prefix=/usr --mandir=/usr/share/man --without-lyx ${CONFIGURE_EXTRA}
 	$(MAKE)
 

Reply via email to