commit 43043527fc2df76ff214234d7a93f73568297107 Author: Robert Hogan robert@roberthogan.net Date: Sun Feb 27 20:58:37 2011 +0000
Only run config.status once at configure time --- configure.in | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/configure.in b/configure.in index a89fa0e..0291f8f 100644 --- a/configure.in +++ b/configure.in @@ -635,11 +635,11 @@ AC_ENABLE_SHARED AC_ENABLE_STATIC
AC_CONFIG_FILES([src/usewithtor src/torsocks doc/torsocks.conf.5 doc/torsocks.8 doc/usewithtor.1 doc/torsocks.1]) - -dnl Output the Makefile for libtorsocks -AC_OUTPUT(Makefile src/Makefile doc/Makefile) +AC_CONFIG_FILES(Makefile src/Makefile doc/Makefile) +AC_OUTPUT
dnl Output the Makefile for test/test_torsocks. dnl Dump any LDFLAGS that were only required for linking libtorsocks, such as -dynamiclib on OSX. LDFLAGS="$TESTLDFLAGS" -AC_OUTPUT(test/Makefile) +AC_CONFIG_FILES(test/Makefile) +AC_OUTPUT
tor-commits@lists.torproject.org