aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.inc
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2013-01-20 04:17:11 +0100
committerYang Tse <yangsita@gmail.com>2013-01-20 04:20:02 +0100
commit63605d281f804382d2bd2d8655d73e188c12e071 (patch)
treef691a1c88b171b2399693d7421faa3d99762a48e /src/Makefile.inc
parentf4cc54cb4746ae5a6d63438aae811f6543b13774 (diff)
Makefile.inc: fix $(top_srcdir) not allowed in _SOURCES variables
Diffstat (limited to 'src/Makefile.inc')
-rw-r--r--src/Makefile.inc9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Makefile.inc b/src/Makefile.inc
index 7ce30f0b6..cd890accc 100644
--- a/src/Makefile.inc
+++ b/src/Makefile.inc
@@ -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 \