diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-05-07 09:42:23 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-05-07 09:42:23 +0000 |
commit | 9aebdff21931668b13582cd97a0a09f71a186f72 (patch) | |
tree | 77904069344c4d9f85736662174da402638c0fa1 | |
parent | 90da930131541f08d87dc9b2e5bd95365a3d95ac (diff) |
don't use a magic define name
-rw-r--r-- | lib/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 1336bd2ca..1ae693ee6 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -97,7 +97,7 @@ libcurl_la_SOURCES = arpa_telnet.h file.c netrc.h timeval.c base64.c \ hostip4.c hostip6.c hostsyn.c hostthre.c inet_ntop.c inet_ntop.h \ curlx.h -WIN32_SOURCES = $(libcurl_la_SOURCES) config-win32.h +WIN32SOURCES = $(libcurl_la_SOURCES) config-win32.h noinst_HEADERS = setup.h transfer.h @@ -134,7 +134,7 @@ dist-hook: curllib.dsp: msvcproj.head msvcproj.foot Makefile.am cp msvcproj.head curllib.dsp - (for file in $(WIN32_SOURCES); do \ + (for file in $(WIN32SOURCES); do \ echo "# Begin Source File" >> curllib.dsp; \ echo "" >> curllib.dsp; \ echo "SOURCE=.\\"$$file >> curllib.dsp; \ |