blob: b8fdf4c78af2f4da0dc895012e65dd31dfe942c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Description: Fix the Makefile dependencies
Author: Adrian Bunk <bunk@debian.org>
Bug-Debian: https://bugs.debian.org/906498
--- ots-0.5.0.orig/src/Makefile.am
+++ ots-0.5.0/src/Makefile.am
@@ -43,7 +43,7 @@ libots_1_include_HEADERS = \
libots.h
bin_PROGRAMS=ots
-ldadd = $(top_builddir)/src/libots-1.la $(OTS_LIBS) $(POPT_LIBS)
+ldadd = libots-1.la $(OTS_LIBS) $(POPT_LIBS)
ots_LDADD=$(ldadd)
|