[svn] GnuPG - r4826 - branches/STABLE-BRANCH-1-4/util
svn author dshaw
cvs at cvs.gnupg.org
Fri Sep 5 23:01:17 CEST 2008
Author: dshaw
Date: 2008-09-05 23:01:17 +0200 (Fri, 05 Sep 2008)
New Revision: 4826
Modified:
branches/STABLE-BRANCH-1-4/util/ChangeLog
branches/STABLE-BRANCH-1-4/util/Makefile.am
Log:
* Makefile.am: Use $(CC) instead of "cc" to compile, as the user might
be overriding the compiler.
Modified: branches/STABLE-BRANCH-1-4/util/ChangeLog
===================================================================
--- branches/STABLE-BRANCH-1-4/util/ChangeLog 2008-09-04 16:54:58 UTC (rev 4825)
+++ branches/STABLE-BRANCH-1-4/util/ChangeLog 2008-09-05 21:01:17 UTC (rev 4826)
@@ -1,3 +1,8 @@
+2008-09-05 David Shaw <dshaw at jabberwocky.com>
+
+ * Makefile.am: Use $(CC) instead of "cc" to compile, as the user
+ might be overriding the compiler.
+
2008-08-19 Werner Koch <wk at g10code.com>
* iobuf.c: Avoid passing a NULL (iobuf_t)->desc to the log
Modified: branches/STABLE-BRANCH-1-4/util/Makefile.am
===================================================================
--- branches/STABLE-BRANCH-1-4/util/Makefile.am 2008-09-04 16:54:58 UTC (rev 4825)
+++ branches/STABLE-BRANCH-1-4/util/Makefile.am 2008-09-05 21:01:17 UTC (rev 4826)
@@ -64,17 +64,17 @@
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@
More information about the Gnupg-commits
mailing list