Check-in [69f695475e]
Overview
Comment:Minor update to check for new build script system
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:69f695475eb42ec237245948c525ddaa11f44de3
User & Date: rkeene on 2016-09-06 03:42:16
Other Links: manifest | tags
Context
2016-09-06
03:43
Updated to always create output directory check-in: 229a39bab1 user: rkeene tags: trunk
03:42
Minor update to check for new build script system check-in: 69f695475e user: rkeene tags: trunk
03:32
Added support for a simplified package build script check-in: cbce55da50 user: rkeene tags: trunk
Changes

Modified kitcreator from [5a5604ad51] to [ee8824e5b2].

   165    165   
   166    166   # Function to determine what build mode is being used
   167    167   function useCommonBuildSystem() {
   168    168   	local script
   169    169   
   170    170   	script="$1"
   171    171   
   172         -	if head "${script}" 2>/dev/null | grep -i '^# *BuildCompatible: *KitCreator *$' >/dev/null 2>/dev/null; then
          172  +	if grep -i '^# *BuildCompatible: *KitCreator *$' "${script}" >/dev/null 2>/dev/null; then
   173    173   		return 0
   174    174   	fi
   175    175   
   176    176   	return 1
   177    177   }
   178    178   
   179    179   # Cleanup build logs