Overview
| Comment: | Updated to correct issue where Metakit fails to build but is not detected | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 930c36ab1ff8f05385c7e54b549e16d1 | 
| User & Date: | rkeene on 2014-05-20 20:33:14 | 
| Other Links: | manifest | tags | 
Context
| 2014-05-20 | ||
| 22:58 | Updated to include global CFLAGS/LDFLAGS/CPPFLAGS/LIBS in addition to per-project settings check-in: fddc41b4b8 user: rkeene tags: trunk | |
| 20:33 | Updated to correct issue where Metakit fails to build but is not detected check-in: 930c36ab1f user: rkeene tags: trunk | |
| 05:56 | Added patch to fix issue with calling exit with open Metakit channels check-in: 7181cf4346 user: rkeene tags: trunk | |
Changes
Modified kitsh/buildsrc/kitsh-0.0/aclocal.m4 from [b2881cb180] to [88278c321a].
| ︙ | ︙ | |||
| 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | 
		projlibfilesnostub="`echo "$projlibfiles" | grep -v 'stub' | tr "\n" ' '`"
		projlibfiles="`echo "$projlibfiles" | tr "\n" ' '`"
		projlibextra=""
		if test "$projlibfilesnostub" = ' '; then
			projlibfilesnostub=''
		fi
		for libfile in ${projlibfilesnostub}; do
			if test -f "${libfile}.linkadd"; then
				projlibextra="`cat "${libfile}.linkadd"`"
			fi
		done
 | > > > > | 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | 
		projlibfilesnostub="`echo "$projlibfiles" | grep -v 'stub' | tr "\n" ' '`"
		projlibfiles="`echo "$projlibfiles" | tr "\n" ' '`"
		projlibextra=""
		if test "$projlibfilesnostub" = ' '; then
			projlibfilesnostub=''
		fi
		if test "$projlibfiles" = ' '; then
			projlibfiles=''
		fi
		for libfile in ${projlibfilesnostub}; do
			if test -f "${libfile}.linkadd"; then
				projlibextra="`cat "${libfile}.linkadd"`"
			fi
		done
 | 
| ︙ | ︙ |