diff options
author | Yang Tse <yangsita@gmail.com> | 2013-01-20 04:17:11 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2013-01-20 04:20:02 +0100 |
commit | 63605d281f804382d2bd2d8655d73e188c12e071 (patch) | |
tree | f691a1c88b171b2399693d7421faa3d99762a48e /src/Makefile.b32 | |
parent | f4cc54cb4746ae5a6d63438aae811f6543b13774 (diff) | |
download | curl-63605d281f804382d2bd2d8655d73e188c12e071.tar.gz |
Makefile.inc: fix $(top_srcdir) not allowed in _SOURCES variables
Diffstat (limited to 'src/Makefile.b32')
-rw-r--r-- | src/Makefile.b32 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Makefile.b32 b/src/Makefile.b32 index 804ac6d14..31d89f6e2 100644 --- a/src/Makefile.b32 +++ b/src/Makefile.b32 @@ -77,10 +77,9 @@ LINKLIB = $(LINKLIB) $(OPENSSL_PATH)\out32\ssleay32.lib $(OPENSSL_PATH)\out32\l .path.obj = $(OBJDIR) # Makefile.inc provides the CSOURCES and HHEADERS defines -!undef top_srcdir !include Makefile.inc -CSOURCES = $(CURL_CFILES) $(CURLX_ONES:/lib/=) +CSOURCES = $(CURL_CFILES) $(CURLX_ONES:../lib/=) OBJECTS = $(CSOURCES:.c=.obj) .c.obj: |