From: Brian Aker Date: Sun, 28 Apr 2013 10:43:40 +0000 (-0400) Subject: Move logic to specific distcheck X-Git-Tag: 1.0.18~25^2~6 X-Git-Url: https://git.m6w6.name/?p=awesomized%2Flibmemcached;a=commitdiff_plain;h=f11376b6b5e8556138a15e01d79222775a0f286d Move logic to specific distcheck --- diff --git a/bootstrap.sh b/bootstrap.sh index 4e2a078e..22c687e8 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -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 ;;