mirror of https://github.com/GNOME/gimp.git
parent
43ff0cdfee
commit
e5ad984b27
|
@ -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.
|
||||
|
|
14
configure.in
14
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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue