Skip to content

Commit ea85167

Browse files
committed
Merge pull request hmng#11 from EZchip/master
Fix rebuild errors
2 parents 98a73ae + 364ce6a commit ea85167

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

configure.ac

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
AC_INIT([jsonrpc-c], [0.1], [hmng@farol.pt])
22
AC_CONFIG_SRCDIR([src/jsonrpc-c.c])
33

4+
m4_pattern_allow([AM_PROG_AR])
45
AM_PROG_AR
56
LT_INIT
67
AM_INIT_AUTOMAKE([-Wall -Werror foreign])

example/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ noinst_PROGRAMS=server
1919
server_SOURCES= server.c
2020

2121
# Linker options for a.out
22-
server_LDFLAGS = $(LIBEV_LIBS) $(top_srcdir)/src/libjsonrpcc.la
22+
server_LDFLAGS = $(LIBEV_LIBS) $(top_builddir)/src/libjsonrpcc.la
2323

2424
# Compiler options for a.out
2525
server_CPPFLAGS = $(LIBEV_CFLAGS) -I$(top_srcdir)/include

0 commit comments

Comments
 (0)