From 8a23c33e042c4cf733cce25eb6bae1f29d2f6413 Mon Sep 17 00:00:00 2001 From: Pavan Deolasee Date: Thu, 11 Feb 2016 17:47:11 +0530 Subject: [PATCH] Fix a typo in the script, we should be looking for GNUmakefile and not GNUMakefile --- config/create_msgids.sh | 4 ++-- 1 file 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 = " entry and +# which has a Makefile/GNUmakefile with "subdir = " 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 -- 2.39.5