Changeset 2240 for trunk/test/common_defs.sh.in
- Timestamp:
- Apr 11, 2010, 5:06:16 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/common_defs.sh.in
r2228 r2240 35 35 bootstrap () 36 36 { 37 autoreconf -siv && true 38 res=$? 39 case $res in 40 0) 41 :;; 42 63) 43 exit 77;; 44 *) 45 exit $res;; 46 esac 37 @MKDIR_P@ m4 38 autoreconf -siv && true 39 res=$? 40 case $res in 41 0) 42 :;; 43 63) 44 exit 77;; 45 *) 46 exit $res;; 47 esac 47 48 } 48 49 … … 60 61 (echo "$me: running libtool --version" && libtool --version) || \ 61 62 (echo "$me: running glibtool --version" && glibtool --version) || exit 77 62 ;;63 *.m4)64 : # do nothing see below65 63 ;; 66 64 *) … … 101 99 echo "creating Makefile.am" 102 100 cat > Makefile.am <<EOF 103 ACLOCAL_AMFLAGS = -I m4 104 # dependency to rerun configure 105 CONFIG_STATUS_DEPENDENCIES = $abs_top_builddir/build_support/yat-config 101 ACLOCAL_AMFLAGS = -I m4 -I ${abs_top_srcdir}/m4 --install 106 102 AM_CPPFLAGS = \$(YAT_CPPFLAGS) 107 103 AM_CXXFLAGS = \$(YAT_CXXFLAGS) … … 136 132 fi #end of creation of autotool files 137 133 138 if test -n "$required"; then139 for tool in $required; do140 case $tool in141 *.m4)142 @MKDIR_P@ --verbose m4143 echo "copying $tool"144 cp @abs_top_srcdir@/m4/$tool m4/$tool145 ;;146 *)147 :148 esac149 done150 fi151 152 134 # turn on shell traces when in verbose mode 153 135 set -x
Note: See TracChangeset
for help on using the changeset viewer.