1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: fix a FTBFS with libpulse
The old patch was changing Makefile.in. Since DH 10, autoreconf is a
default action, so is needed to change Makefile.am, not Makefile.in.
Author: Andrea Veri <and@debian.org>
Reviewed-By: Joao Eriberto Mota Filho <eriberto@debian.org>
Last-Update: 2021-07-11
Index: fische/src/Makefile.am
===================================================================
--- fische.orig/src/Makefile.am
+++ fische/src/Makefile.am
@@ -50,5 +50,4 @@ fische_SOURCES = \
fische_LDFLAGS =
fische_LDADD = \
- $(SDL_LIBS)
-
+ $(SDL_LIBS) -lpulse
|