summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavan Deolasee2016-02-11 12:17:11 +0000
committerPavan Deolasee2016-10-18 09:57:46 +0000
commita86de3c017a84a1612cd9392125aa33a6d2cc948 (patch)
tree1a1e3529c395b19ff7ff0857cae5336d5d17e39a
parent5c0182c86797487e4cc2837e5d3a0f28ea2d7293 (diff)
Fix a typo in the script, we should be looking for GNUmakefile and not
GNUMakefile
-rwxr-xr-xconfig/create_msgids.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/create_msgids.sh b/config/create_msgids.sh
index 97ef062a69..eb3391bf4c 100755
--- a/config/create_msgids.sh
+++ b/config/create_msgids.sh
@@ -4,7 +4,7 @@
# Run this script when configuring with --enable-genmsgids
#
# Recurse through all subdiectories, collecting information about all subdirs
-# which has a Makefile/GNUMakefile with "subdir = <subdir_name>" entry and
+# which has a Makefile/GNUmakefile with "subdir = <subdir_name>" entry and
# assign a module_id for all such subdirs. The Makefile.global then looks up
# this catalog and uses the module_id configured.
#
@@ -22,7 +22,7 @@ handle_dir()
for subdir in `ls $1`; do
if [ -d $1/$subdir ]; then
makefile1=$1/$subdir/Makefile
- makefile2=$1/$subdir/GNUMakefile
+ makefile2=$1/$subdir/GNUmakefile
if [ -f $makefile1 ]; then
cat $makefile1 | grep -E "^subdir = " > /dev/null
if [ $? -ne 0 ]; then