From 69474954ac8adce921f5a6196950766e3d056ed3 Mon Sep 17 00:00:00 2001 From: Juan Manuel Guerrero Date: Tue, 20 Dec 2005 23:59:50 +0000 Subject: [PATCH] Fix PACKAGE variable computation. --- djgpp/Makefile.maint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'`; \ -- 2.45.2