diff options
author | David Shaw <[email protected]> | 2008-09-05 21:01:17 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2008-09-05 21:01:17 +0000 |
commit | 564436af6f3e018596c802115c228435a1d94948 (patch) | |
tree | 9d686894fac4f36884c3ab6de001413af0d2c2b9 | |
parent | * keyserver.c (keyserver_import_cert): Allow keyserver URLs in (diff) | |
download | gnupg-564436af6f3e018596c802115c228435a1d94948.tar.gz gnupg-564436af6f3e018596c802115c228435a1d94948.zip |
* Makefile.am: Use $(CC) instead of "cc" to compile, as the user might
be overriding the compiler.
-rw-r--r-- | util/ChangeLog | 5 | ||||
-rw-r--r-- | util/Makefile.am | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/util/ChangeLog b/util/ChangeLog index 5ed0f5e1a..6abc8c30d 100644 --- a/util/ChangeLog +++ b/util/ChangeLog @@ -1,3 +1,8 @@ +2008-09-05 David Shaw <[email protected]> + + * Makefile.am: Use $(CC) instead of "cc" to compile, as the user + might be overriding the compiler. + 2008-08-19 Werner Koch <[email protected]> * iobuf.c: Avoid passing a NULL (iobuf_t)->desc to the log diff --git a/util/Makefile.am b/util/Makefile.am index 60d287ac2..861f2dccb 100644 --- a/util/Makefile.am +++ b/util/Makefile.am @@ -64,17 +64,17 @@ libcompat_a_DEPENDENCIES = @LIBOBJS@ libcompat_a_LIBADD = @LIBOBJS@ http-test: http.c - cc -DHAVE_CONFIG_H -I. -I. -I.. $(INCLUDES) $(LDFLAGS) -g -Wall \ + $(CC) -DHAVE_CONFIG_H -I. -I. -I.. $(INCLUDES) $(LDFLAGS) -g -Wall \ -DTEST -o http-test http.c libutil.a @LIBINTL@ @DNSLIBS@ @CAPLIBS@ srv-test: srv.c - cc -DHAVE_CONFIG_H -I. -I. -I.. $(INCLUDES) $(LDFLAGS) -g -Wall \ + $(CC) -DHAVE_CONFIG_H -I. -I. -I.. $(INCLUDES) $(LDFLAGS) -g -Wall \ -DTEST -o srv-test srv.c libutil.a @LIBINTL@ @DNSLIBS@ @CAPLIBS@ pka-test: pka.c - cc -DHAVE_CONFIG_H -I. -I. -I.. $(INCLUDES) $(LDFLAGS) -g -Wall \ + $(CC) -DHAVE_CONFIG_H -I. -I. -I.. $(INCLUDES) $(LDFLAGS) -g -Wall \ -DTEST -o pka-test pka.c libutil.a @LIBINTL@ @DNSLIBS@ @CAPLIBS@ cert-test: cert.c - cc -DHAVE_CONFIG_H -I. -I. -I.. $(INCLUDES) $(LDFLAGS) -g -Wall \ + $(CC) -DHAVE_CONFIG_H -I. -I. -I.. $(INCLUDES) $(LDFLAGS) -g -Wall \ -DTEST -o cert-test cert.c libutil.a @LIBINTL@ @DNSLIBS@ @CAPLIBS@ |