]> granicus.if.org Git - libevent/commitdiff
Use _SOURCES, not _sources, in sample/Makefile.am
authorNick Mathewson <nickm@torproject.org>
Sun, 25 Sep 2011 11:39:00 +0000 (07:39 -0400)
committerNick Mathewson <nickm@torproject.org>
Sun, 25 Sep 2011 11:39:00 +0000 (07:39 -0400)
Found by Adrian Chadd

sample/Makefile.am

index 937e94efe06e09a6b2b9a652c21beb6689b4aae3..6a148148b63772382c2e1b8c99f1cdd5df10a4ce 100644 (file)
@@ -5,16 +5,16 @@ AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/compat -I$(top_srcdir)/include -I.
 
 noinst_PROGRAMS = event-test time-test signal-test dns-example hello-world http-server
 
-event_test_sources = event-test.c
-time_test_sources = time-test.c
-signal_test_sources = signal-test.c
-dns_example_sources = dns-example.c
-hello_world_sources = hello-world.c
-http_server_sources = http-server.c
+event_test_SOURCES = event-test.c
+time_test_SOURCES = time-test.c
+signal_test_SOURCES = signal-test.c
+dns_example_SOURCES = dns-example.c
+hello_world_SOURCES = hello-world.c
+http_server_SOURCES = http-server.c
 
 if OPENSSL
 noinst_PROGRAMS += le-proxy
-le_proxy_sources = le-proxy.c
+le_proxy_SOURCES = le-proxy.c
 le_proxy_LDADD = $(LDADD) ../libevent_openssl.la -lssl -lcrypto
 endif