aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Yamin <plasmaroo@gentoo.org>2004-06-03 22:11:03 +0000
committerTim Yamin <plasmaroo@gentoo.org>2004-06-03 22:11:03 +0000
commit27d080602a52eceda47340d142cf1c5a1dc87510 (patch)
tree61ad850654f183ac78c911d3a7461ddd83b31ba6 /gen_arch.sh
parentModularized parallel support in the X86 2.6 configuration. (diff)
downloadgenkernel-27d080602a52eceda47340d142cf1c5a1dc87510.tar.gz
genkernel-27d080602a52eceda47340d142cf1c5a1dc87510.tar.bz2
genkernel-27d080602a52eceda47340d142cf1c5a1dc87510.zip
New release:
* Busybox patched to support loops on 2.4 thus giving 2.4 squashfs support. * Various bug fixes; #46167, #46278, #47551, #48219, #48308, #48339, #49728, #51395, #51948. * Speedups: "" > ''; [ ! ... ] && > [ ... ] || et al where applicable. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@106 67a159dc-881f-0410-a524-ba9dfbe2cb84
Diffstat (limited to 'gen_arch.sh')
-rwxr-xr-xgen_arch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/gen_arch.sh b/gen_arch.sh
index aba7ccc4..b16b6fbf 100755
--- a/gen_arch.sh
+++ b/gen_arch.sh
@@ -1,7 +1,7 @@
#!/bin/bash
get_official_arch() {
- if [ "${CMD_ARCHOVERRIDE}" != "" ]
+ if [ "${CMD_ARCHOVERRIDE}" != '' ]
then
ARCH=${CMD_ARCHOVERRIDE}
else
@@ -16,5 +16,5 @@ get_official_arch() {
fi
ARCH_CONFIG="${GK_SHARE}/${ARCH}/config.sh"
- [ ! -f "${ARCH_CONFIG}" ] && gen_die "ARCH: ${ARCH} not yet supported by genkernel. Please add arch-specific config file ${ARCH_CONFIG}"
+ [ -f "${ARCH_CONFIG}" ] || gen_die "${ARCH} not yet supported by genkernel. Please add the arch-specific config file, ${ARCH_CONFIG}"
}