2002-10-11 13:59:32

by Dave Kleikamp

[permalink] [raw]
Subject: [PATCH] Syntax error in fs/nls/Config.in (2.5.41-bk)

There is a missing space before the closing bracket which
causes CONFIG_NLS to not be defined. This patch fixes this and
keeps the line under 80 characters.

diff -Nur linux-2.5.41-bk/fs/nls/Config.in linux/fs/nls/Config.in
--- linux-2.5.41-bk/fs/nls/Config.in Fri Oct 11 08:50:36 2002
+++ linux/fs/nls/Config.in Fri Oct 11 08:51:12 2002
@@ -12,7 +12,8 @@
# msdos and Joliet want NLS
if [ "$CONFIG_JOLIET" = "y" -o "$CONFIG_FAT_FS" != "n" \
-o "$CONFIG_NTFS_FS" != "n" -o "$CONFIG_NCPFS_NLS" = "y" \
- -o "$CONFIG_SMB_NLS" = "y" -o "$CONFIG_JFS_FS" != "n" -o "$CONFIG_CIFS" != "n"]; then
+ -o "$CONFIG_SMB_NLS" = "y" -o "$CONFIG_JFS_FS" != "n" \
+ -o "$CONFIG_CIFS" != "n" ]; then
define_bool CONFIG_NLS y
else
define_bool CONFIG_NLS n