Check-in [9357d3709b]
Overview
Comment:Tidied up some things
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9357d3709b8e1e687de308787b12414cf798a3d6
User & Date: rkeene on 2014-05-19 03:29:07
Other Links: manifest | tags
Context
2014-05-19
03:29
Fixed bug in setting up to link against Tcl 8.4 check-in: 373a97d833 user: rkeene tags: trunk
03:29
Tidied up some things check-in: 9357d3709b user: rkeene tags: trunk
03:28
Removed extraneous comments check-in: 0219f6fd48 user: rkeene tags: trunk
Changes

Modified server/buildpkgs/platform from [55d33286bc] to [2f560c7c64].

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
			case "${MAGICFILE}" in
				*elf*x86-64*)
					CPUPLAT="x86_64"
					;;
				*elf*intel\ 80386*)
					CPUPLAT="ix86"
					;;
				*parisc*)
					CPUPLAT="parisc"
					;;
				*elf*32-bit*sparc*)
					CPUPLAT="sparc"
					;;
				*elf*64-bit*sparc*)
					CPUPLAT="sparc64"
					;;
				*pa-risc*)
					CPUPLAT="parisc"
					;;
			esac

			if [ "${MAGICOS}" != "`uname -s`" ]; then
				# Cross compiling, try to determine OS ...
				true
			fi
			;;







|








<
<
<







17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32



33
34
35
36
37
38
39
			case "${MAGICFILE}" in
				*elf*x86-64*)
					CPUPLAT="x86_64"
					;;
				*elf*intel\ 80386*)
					CPUPLAT="ix86"
					;;
				*parisc*|*pa-risc*)
					CPUPLAT="parisc"
					;;
				*elf*32-bit*sparc*)
					CPUPLAT="sparc"
					;;
				*elf*64-bit*sparc*)
					CPUPLAT="sparc64"
					;;



			esac

			if [ "${MAGICOS}" != "`uname -s`" ]; then
				# Cross compiling, try to determine OS ...
				true
			fi
			;;