14 lines
416 B
Diff
14 lines
416 B
Diff
Description: Fix a dependency bug in Makefile.am
|
|
Old bug exposed by automake 1.16.
|
|
Author: Adrian Bunk <bunk@debian.org>
|
|
Bug-Debian: https://bugs.debian.org/905472
|
|
|
|
--- libtextwrap-0.1.orig/Makefile.am
|
|
+++ libtextwrap-0.1/Makefile.am
|
|
@@ -8,4 +8,4 @@ man_MANS = textwrap.3 dotextwrap.1
|
|
|
|
bin_PROGRAMS = dotextwrap
|
|
dotextwrap_SOURCES = dotextwrap.c
|
|
-dotextwrap_LDADD = -ltextwrap
|
|
+dotextwrap_LDADD = libtextwrap.la
|