1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

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

This commit is contained in:
Dan Fandrich 2006-07-07 18:37:14 +00:00
parent 8ef454dcbe
commit 70f2b5e877

View File

@ -124,7 +124,7 @@ DSPOUT = | awk '{printf("%s\r\n", $$0)}' >> $(DSP)
$(DSP): msvcproj.head msvcproj.foot Makefile.am $(DSP): msvcproj.head msvcproj.foot Makefile.am
echo "creating $(DSP)" echo "creating $(DSP)"
@(cp msvcproj.head $(DSP); \ @(cp $(srcdir)/msvcproj.head $(DSP); \
echo "# Begin Group \"Source Files\"" $(DSPOUT); \ echo "# Begin Group \"Source Files\"" $(DSPOUT); \
for file in $(WIN32SOURCES); do \ for file in $(WIN32SOURCES); do \
echo "# Begin Source File" $(DSPOUT); \ echo "# Begin Source File" $(DSPOUT); \
@ -141,4 +141,4 @@ $(DSP): msvcproj.head msvcproj.foot Makefile.am
echo "# End Source File" $(DSPOUT); \ echo "# End Source File" $(DSPOUT); \
done; \ done; \
echo "# End Group" $(DSPOUT); \ echo "# End Group" $(DSPOUT); \
cat msvcproj.foot $(DSPOUT) ) cat $(srcdir)/msvcproj.foot $(DSPOUT) )