From: Wilfried Goesgens Date: Sun, 7 Dec 2014 15:15:23 +0000 (+0100) Subject: Force ascii in grep; thanks to user 'nnnn20430' for pointing this out. X-Git-Tag: v9.01~78 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=16cc42ffba50c17ea1ca84affc37750e15997f15 Force ascii in grep; thanks to user 'nnnn20430' for pointing this out. --- diff --git a/webcit/scripts/mk_module_init.sh b/webcit/scripts/mk_module_init.sh index 19a29d163..5ff26e785 100755 --- a/webcit/scripts/mk_module_init.sh +++ b/webcit/scripts/mk_module_init.sh @@ -32,24 +32,24 @@ U_FILE="$CUR_DIR/modules_upgrade.c" rm -f $C_FILE $H_FILE # server lifetime: -START_FUNCS=`grep ServerStartModule_ *.c |sed "s;.*:;;" |sort -u` -INIT_FUNCS=`grep InitModule_ *.c |sed "s;.*:;;" |sort -u` -INIT2_FUNCS=`grep InitModule2_ *.c |sed "s;.*:;;" |sort -u` -FINALIZE_FUNCS=`grep FinalizeModule_ *.c |sed "s;.*:;;" |sort -u` -SHUTDOWN_FUNCS=`grep ServerShutdownModule_ *.c |sed "s;.*:;;" |sort -u` +START_FUNCS=`grep -a ServerStartModule_ *.c |sed "s;.*:;;" |sort -u` +INIT_FUNCS=`grep -a InitModule_ *.c |sed "s;.*:;;" |sort -u` +INIT2_FUNCS=`grep -a InitModule2_ *.c |sed "s;.*:;;" |sort -u` +FINALIZE_FUNCS=`grep -a FinalizeModule_ *.c |sed "s;.*:;;" |sort -u` +SHUTDOWN_FUNCS=`grep -a ServerShutdownModule_ *.c |sed "s;.*:;;" |sort -u` # session hooks: -SESS_NEW_FUNCS=`grep SessionNewModule_ *.c |sed "s;.*:;;" |sort -u` -SESS_ATTACH_FUNCS=`grep SessionAttachModule_ *.c |sed "s;.*:;;" |sort -u` -SESS_DETACH_FUNCS=`grep SessionDetachModule_ *.c |sed "s;.*:;;" |sort -u` -SESS_DESTROY_FUNCS=`grep SessionDestroyModule_ *.c |sed "s;.*:;;" |sort -u` +SESS_NEW_FUNCS=`grep -a SessionNewModule_ *.c |sed "s;.*:;;" |sort -u` +SESS_ATTACH_FUNCS=`grep -a SessionAttachModule_ *.c |sed "s;.*:;;" |sort -u` +SESS_DETACH_FUNCS=`grep -a SessionDetachModule_ *.c |sed "s;.*:;;" |sort -u` +SESS_DESTROY_FUNCS=`grep -a SessionDestroyModule_ *.c |sed "s;.*:;;" |sort -u` -HTTP_NEW_FUNCS=`grep HttpNewModule_ *.c |sed "s;.*:;;" |sort -u` -HTTP_DETACH_FUNCS=`grep HttpDetachModule_ *.c |sed "s;.*:;;" |sort -u` -HTTP_DESTROY_FUNCS=`grep HttpDestroyModule_ *.c |sed "s;.*:;;" |sort -u` +HTTP_NEW_FUNCS=`grep -a HttpNewModule_ *.c |sed "s;.*:;;" |sort -u` +HTTP_DETACH_FUNCS=`grep -a HttpDetachModule_ *.c |sed "s;.*:;;" |sort -u` +HTTP_DESTROY_FUNCS=`grep -a HttpDestroyModule_ *.c |sed "s;.*:;;" |sort -u` -#SESS_NEW_FUNCS=`grep SessionNewModule_ *.c |sed "s;.*:;;" |sort -u` +#SESS_NEW_FUNCS=`grep -a SessionNewModule_ *.c |sed "s;.*:;;" |sort -u` #start the header file