From: Pavan Deolasee Date: Thu, 11 Feb 2016 12:17:11 +0000 (+0530) Subject: Fix a typo in the script, we should be looking for GNUmakefile and not X-Git-Tag: XL_10_R1BETA1~774 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=a86de3c017a84a1612cd9392125aa33a6d2cc948;p=postgres-xl.git Fix a typo in the script, we should be looking for GNUmakefile and not GNUMakefile --- 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