diff --git a/ChangeLog b/ChangeLog index 31337b3019..47eb72ea04 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,9 @@ +Wed Aug 16 18:39:44 PDT 2000 Manish Singh + + * configure.in: removed awk dependency for authors list + 2000-08-16 Garry R. Osgood + * app/gdisplay.c * app/image_map.c Addresses Bug Report #14704, and an undisclosed undo system bug. diff --git a/configure.in b/configure.in index faaf62614b..6de29caddd 100644 --- a/configure.in +++ b/configure.in @@ -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)