Check-in [ea06c960df]
Overview
Comment:Updated to support using "kitcreator-build.sh" if it exists, instead of "build.sh" in a project directory
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:ea06c960df795bf1b5b32c75055298ff04e20720
User & Date: rkeene on 2014-10-27 05:30:56
Other Links: manifest | tags
Context
2014-10-27
05:31
Added support for specifying that Tk should be linked dynamically check-in: 2ffc7ae71a user: rkeene tags: trunk
05:30
Updated to support using "kitcreator-build.sh" if it exists, instead of "build.sh" in a project directory check-in: ea06c960df user: rkeene tags: trunk
2014-10-25
04:10
KitCreator 0.9.1 check-in: f5ad57800d user: rkeene tags: trunk, 0.9.1
Changes

Modified kitcreator from [48230f22d5] to [08ce5d4f09].

   164    164   		echo -n "Skipping ${pkg} ..."
   165    165   	else
   166    166   		echo -n "Building ${pkg} ..."
   167    167   
   168    168   		(
   169    169   			cd "${pkg}" >/dev/null 2>/dev/null || exit 1
   170    170   
   171         -			./build.sh 3>&1 4>&2 > build.log 2>&1 || exit 1
          171  +			build_script='./build.sh'
          172  +			if [ -x 'kitcreator-build.sh' ]; then
          173  +				build_script='./kitcreator-build.sh'
          174  +			fi
          175  +			"${build_script}" 3>&1 4>&2 > build.log 2>&1 || exit 1
   172    176   		) || failed="1"
   173    177   	fi
   174    178   
   175    179   	if [ "${failed}" = "1" ]; then
   176    180   		echo " failed."
   177    181   		failedpkgs="${failedpkgs} ${pkg}"
   178    182   	else