Move logic to specific distcheck
authorBrian Aker <brian@tangent.org>
Sun, 28 Apr 2013 10:43:40 +0000 (06:43 -0400)
committerBrian Aker <brian@tangent.org>
Sun, 28 Apr 2013 10:43:40 +0000 (06:43 -0400)
bootstrap.sh

index 4e2a078e50b65c6d7162caf131f08d90640c9b63..22c687e80a66e8a0cfa81be46a47746a00944116 100755 (executable)
@@ -890,41 +890,15 @@ function make_for_continuus_integration ()
       assert_exec_file 'configure'
       assert_file 'Makefile'
 
+      make_target 'all'
+
       # make rpm includes "make distcheck"
       if [[ -f rpm.am ]]; then
-        make_target 'all'
         make_rpm
       elif [[ -d rpm ]]; then
-        make_target 'all'
         make_rpm
-      else
-        make_distcheck
       fi
       ;;
-    *-precise-*)
-      run_configure
-
-      assert_exec_file 'configure'
-      assert_file 'Makefile'
-
-      make_distcheck
-      ;;
-    *-quantal-*)
-      run_configure
-
-      assert_exec_file 'configure'
-      assert_file 'Makefile'
-
-      make_distcheck
-      ;;
-    *-raring-*)
-      run_configure
-
-      assert_exec_file 'configure'
-      assert_file 'Makefile'
-
-      make_distcheck
-      ;;
     *)
       make_jenkins_default
       ;;