My last change caused new warnings on systems that were already making the

text arrays const.
This commit is contained in:
David Lawrence
2000-08-01 19:12:10 +00:00
parent d6da642b67
commit c037bf9c8e
+2 -2
View File
@@ -13,7 +13,7 @@
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# $Id: Makefile.in,v 1.18 2000/08/01 14:34:11 tale Exp $
# $Id: Makefile.in,v 1.19 2000/08/01 19:12:10 tale Exp $
srcdir = @srcdir@
VPATH = @srcdir@
@@ -61,7 +61,7 @@ TARGETS = ${OBJS}
confparser.c: confparser.y
${YACC} -d ${srcdir}/confparser.y
rm -f confparser.c confparser_p.h
sed -e '/^\#line/d' -e 's/\(char \*yy.*\[\]\)/const \1/' \
sed -e '/^\#line/d' -e 's/^\(char \*yy.*\[\]\)/const \1/' \
< y.tab.c > confparser.c
rm -f y.tab.c
chmod a-w confparser.c