소스 검색

Do not run configure from autogen.sh. Also switch to set -e instead of linking all the commands using &&

svn:r11158
Peter Palfrader 16 년 전
부모
커밋
08a640c54b
1개의 변경된 파일7개의 추가작업 그리고 5개의 파일을 삭제
  1. 7 5
      autogen.sh

+ 7 - 5
autogen.sh

@@ -1,7 +1,9 @@
 #!/bin/sh
+
+set -e
+
 # Run this to generate all the initial makefiles, etc.
-aclocal && \
-	autoheader && \
-	autoconf && \
-	automake --add-missing --copy && \
-	if test x$NOCONF = x ; then ./configure "$@"; fi
+aclocal
+autoheader
+autoconf
+automake --add-missing --copy