Makefile.inc: fix $(top_srcdir) not allowed in _SOURCES variables

This commit is contained in:
Yang Tse 2013-01-20 04:17:11 +01:00
parent f4cc54cb47
commit 63605d281f
10 changed files with 30 additions and 36 deletions

View file

@ -9,10 +9,11 @@
# libcurl has sources that provide functions named curlx_* that aren't part of
# the official API, but we re-use the code here to avoid duplication.
CURLX_ONES = $(top_srcdir)/lib/strtoofft.c \
$(top_srcdir)/lib/strdup.c \
$(top_srcdir)/lib/rawstr.c \
$(top_srcdir)/lib/nonblock.c
CURLX_ONES = \
../lib/strtoofft.c \
../lib/strdup.c \
../lib/rawstr.c \
../lib/nonblock.c
CURL_CFILES = \
tool_binmode.c \