Skip to content
Snippets Groups Projects
Commit 70f2b5e8 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Fixed building curllib.dsp when running make outside the source tree.

parent 8ef454dc
No related branches found
No related tags found
No related merge requests found
......@@ -124,7 +124,7 @@ DSPOUT = | awk '{printf("%s\r\n", $$0)}' >> $(DSP)
$(DSP): msvcproj.head msvcproj.foot Makefile.am
echo "creating $(DSP)"
@(cp msvcproj.head $(DSP); \
@(cp $(srcdir)/msvcproj.head $(DSP); \
echo "# Begin Group \"Source Files\"" $(DSPOUT); \
for file in $(WIN32SOURCES); do \
echo "# Begin Source File" $(DSPOUT); \
......@@ -141,4 +141,4 @@ $(DSP): msvcproj.head msvcproj.foot Makefile.am
echo "# End Source File" $(DSPOUT); \
done; \
echo "# End Group" $(DSPOUT); \
cat msvcproj.foot $(DSPOUT) )
cat $(srcdir)/msvcproj.foot $(DSPOUT) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment