소스 검색

r8952@totoro: nickm | 2006-10-08 17:27:56 -0400
Have autogen.sh script not run ./configure if NOCONF environment variable is set. This will make buildbot stuff go faster.


svn:r8656

Nick Mathewson 17 년 전
부모
커밋
969ec52e6b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      autogen.sh

+ 1 - 1
autogen.sh

@@ -4,4 +4,4 @@ aclocal && \
 	autoheader && \
 	autoconf && \
 	automake --add-missing --copy && \
-	./configure
+	if test x$NOCONF = x ; then ./configure; fi