aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile.am
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2006-07-07 18:37:14 +0000
committerDan Fandrich <dan@coneharvesters.com>2006-07-07 18:37:14 +0000
commit70f2b5e8779dfbaa0e7f1609396010f38bda6176 (patch)
tree84be58c382dd9e1038eedede052ba3bbbffd4fe9 /lib/Makefile.am
parent8ef454dcbe7f7f3d16d1d2116ede7e7d1d53dd57 (diff)
Fixed building curllib.dsp when running make outside the source tree.
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r--lib/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 9e81e399b..aad2d61b3 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -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) )