Source: flexml Version: 1.9.6-5.1 Severity: minor Tags: patch Hi,
GNU Make now has a --shuffle option that simulates non-deterministic ordering of dependencies. See https://trofi.github.io/posts/238-new-make-shuffle-mode.html and also previous work in Debian by Santiago Vila: https://people.debian.org/~sanvila/make-shuffle/ This package fails to build with GNUMAKEFLAGS=--shuffle=reverse. This patch fixes it. --- flexml-1.9.6.orig/Makefile +++ flexml-1.9.6/Makefile @@ -106,7 +106,7 @@ endif flexml-act.l: flexml-act.dtd skel $(PERL) ./flexml.pl $(FLEXDEBUG) -Lv -ractions -s skel $< -flexml-act.c: flexml-act.l +flexml-act.h flexml-act.c: flexml-act.l $(FLEX) -B -s -v -oflexml-act.c flexml-act.l flexml-act.o: flexml-act.c flexml-act.h Lucas