Ticket #57039: patch-autogen.sh.diff
File patch-autogen.sh.diff, 727 bytes (added by xstnztk (Martin Jerabek), 6 years ago) |
---|
-
autogen.sh
old new 7 7 olddir=`pwd` 8 8 cd "$srcdir" 9 9 10 GTKDOCIZE= $(which gtkdocize 2>/dev/null)11 if test -z $GTKDOCIZE; then10 GTKDOCIZE="$(command -v gtkdocize)" 11 if test -z "$GTKDOCIZE"; then 12 12 echo "You don't have gtk-doc installed, and thus won't be able to generate the documentation." 13 13 rm -f gtk-doc.make 14 14 cat > gtk-doc.make <<EOF … … 19 19 gtkdocize || exit $? 20 20 fi 21 21 22 AUTORECONF= `which autoreconf`23 if test -z $AUTORECONF; then22 AUTORECONF="$(command -v autoreconf)" 23 if test -z "$AUTORECONF"; then 24 24 echo "*** No autoreconf found, please install it ***" 25 25 exit 1 26 26 fi