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
166
167
168
169
170
171
172
173
174
175
176
177
178
179

# Function to determine what build mode is being used
function useCommonBuildSystem() {
	local script

	script="$1"

	if head "${script}" 2>/dev/null | grep -i '^# *BuildCompatible: *KitCreator *$' >/dev/null 2>/dev/null; then
		return 0
	fi

	return 1
}

# Cleanup build logs







|







165
166
167
168
169
170
171
172
173
174
175
176
177
178
179

# Function to determine what build mode is being used
function useCommonBuildSystem() {
	local script

	script="$1"

	if grep -i '^# *BuildCompatible: *KitCreator *$' "${script}" >/dev/null 2>/dev/null; then
		return 0
	fi

	return 1
}

# Cleanup build logs