configs  Check-in [0fec6041e7]

Overview
Comment:zshrc: Reduce indentation for case
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0fec6041e771237a805f26d54ebba0d6e5c56156fedbb2123b9db209a5b7583e
User & Date: js on 2022-11-25 21:30:21
Other Links: manifest | tags
Context
2022-11-25
21:36
zshrc: Add classic macOS to cross check-in: f78c8320ff user: js tags: trunk
21:30
zshrc: Reduce indentation for case check-in: 0fec6041e7 user: js tags: trunk
2022-11-15
22:19
Add .fossil-settings/ignore-glob check-in: 9d6b1ab98d user: js tags: trunk
Changes

Modified zshrc from [db2851a231] to [4f56273104].

431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
			export cross_host="arm-none-eabi"
			export objfw_configure_flags="--with-$1"
			;;
		amiga)
			case "$2" in
				m68k)
					if [ -z "$amiga_gcc_path" ]; then
						echo -n "Please set " 1>&2
						echo "amiga_gcc_path!" 1>&2
						return 1
					fi

					export PATH="$amiga_gcc_path/bin:$PATH"
					export cross_host="m68k-amigaos"
					;;
				ppc)
					if [ -z "$adtools_path" ]; then
						echo -n "Please set " 1>&2
						echo "adtools_path!" 1>&2
						return 1
					fi

					export PATH="$adtools_path/bin:$PATH"
					export cross_host="ppc-amigaos"
					;;
			esac







|
<








|
<







431
432
433
434
435
436
437
438

439
440
441
442
443
444
445
446
447

448
449
450
451
452
453
454
			export cross_host="arm-none-eabi"
			export objfw_configure_flags="--with-$1"
			;;
		amiga)
			case "$2" in
				m68k)
					if [ -z "$amiga_gcc_path" ]; then
				echo -n "Please set amiga_gcc_path!" 1>&2

						return 1
					fi

					export PATH="$amiga_gcc_path/bin:$PATH"
					export cross_host="m68k-amigaos"
					;;
				ppc)
					if [ -z "$adtools_path" ]; then
				echo -n "Please set adtools_path!" 1>&2

						return 1
					fi

					export PATH="$adtools_path/bin:$PATH"
					export cross_host="ppc-amigaos"
					;;
			esac