From: Juan Manuel Guerrero Date: Tue, 20 Dec 2005 23:59:50 +0000 (+0000) Subject: Fix PACKAGE variable computation. X-Git-Tag: v2.3b~550 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/69474954ac8adce921f5a6196950766e3d056ed3?hp=b09a18c50d221b54e6bc94e03deb65ecd52c4288 Fix PACKAGE variable computation. --- diff --git a/djgpp/Makefile.maint b/djgpp/Makefile.maint index 3d386d68..03746746 100644 --- a/djgpp/Makefile.maint +++ b/djgpp/Makefile.maint @@ -9,7 +9,7 @@ SHELL = /bin/sh all: README README: README.in $(top_srcdir)/configure - PACKAGE=`grep "^[ ]*PACKAGE=" $(top_srcdir)/configure | sed -e 's/^[ ]*PACKAGE=//'`; \ + PACKAGE=`grep "^[ ]*PACKAGE=" $(top_srcdir)/configure | sed -e 's/^[ ]*PACKAGE=//' -e s/[\"\']//g`; \ VERSION=`grep "^[ ]*VERSION=" $(top_srcdir)/configure | sed -e 's/^[ ]*VERSION=//' -e s/[\"\']//g`; \ package_version=`echo "$${VERSION}" | sed 's/\.//g'`; \ tree_version=`echo "$${VERSION}" | sed 's/\.//2g'`; \