Removed awk dependency for authors list

-Yosh
This commit is contained in:
Manish Singh 2000-08-17 01:43:55 +00:00
parent 43ff0cdfee
commit e5ad984b27
2 changed files with 18 additions and 1 deletions

View File

@ -1,4 +1,9 @@
Wed Aug 16 18:39:44 PDT 2000 Manish Singh <yosh@gimp.org>
* configure.in: removed awk dependency for authors list
2000-08-16 Garry R. Osgood <gosgood@idt.net>
* app/gdisplay.c
* app/image_map.c
Addresses Bug Report #14704, and an undisclosed undo system bug.

View File

@ -672,7 +672,19 @@ if test -n "$DISTMAKE"; then
fi
dnl eek, what a hack...
GIMP_CONTRIBUTORS=`cat tools/authorsgen/contributors | sed -e '/^#/d' -e 's/\.*\[.*\]//' -e 's/^ *//' -e 's/ *$//' -e '/^$/d' | awk '{ ORS = ", "; print; }' | sed -e 's/, $/./'`
rm -f confauthorsgen
IFS="${IFS= }"; gimp_save_IFS="$IFS"; IFS='
'
for i in `sed -e '/^#/d' -e 's/\.*\[.*\]//' -e 's/^ *//' -e 's/ *$//' -e '/^$/d' < tools/authorsgen/contributors`; do
echo $ac_n "$i, $ac_c" >> confauthorsgen
done
IFS="$gimp_save_IFS"
GIMP_CONTRIBUTORS=`sed -e 's/, $/./' < confauthorsgen`
rm -f confauthorsgen
AM_CONDITIONAL(STATICLIBS, test x$enable_static = xyes)