From: Daniel Stenberg Date: Mon, 10 Dec 2007 22:20:26 +0000 (+0000) Subject: grrr, the previous commit was meant to properly make sure that we don't X-Git-Tag: upstream/7.37.1~8306 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b6315ce1f8ba92149d983c8452250bda5eee164;p=platform%2Fupstream%2Fcurl.git grrr, the previous commit was meant to properly make sure that we don't link any executables when doing debug builds since they kind of assume symbols provided by libcurl, but it also wrongly included acountry.c --- diff --git a/ares/Makefile.am b/ares/Makefile.am index 4148870..c978183 100644 --- a/ares/Makefile.am +++ b/ares/Makefile.am @@ -11,7 +11,7 @@ MSVCFILES = vc/adig/adig.dep vc/adig/adig.dsp vc/vc.dsw vc/ahost/ahost.dep \ if DEBUGBUILD PROGS = else -PROGS = ahost adig acountry +PROGS = ahost adig endif noinst_PROGRAMS =$(PROGS) @@ -77,9 +77,6 @@ ahost_LDADD = $(top_builddir)/$(lib_LTLIBRARIES) adig_SOURCES = adig.c ares_getopt.c adig_LDADD = $(top_builddir)/$(lib_LTLIBRARIES) -acountry_SOURCES = acountry.c ares_getopt.c -acountry_LDADD = $(top_builddir)/$(lib_LTLIBRARIES) - # Make files named *.dist replace the file without .dist extension dist-hook: find $(distdir) -name "*.dist" -exec rm {} \;