From 620dd7c5fd1895001a2c680d5dd1dbdbb6f3101d Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 13 Nov 2003 06:02:20 +0000 Subject: By popular demand, use 'sed' rather than 'perl' for doing search and replace stuff. Hopefully we do not have any perl specific regexs that will be broken by this change, but it seems to be working thus far anyways, --- make/ncurses.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'make/ncurses.mk') diff --git a/make/ncurses.mk b/make/ncurses.mk index c0a555086..6c32bbda0 100644 --- a/make/ncurses.mk +++ b/make/ncurses.mk @@ -5,7 +5,7 @@ # ############################################################# # Copyright (C) 2002 by Ken Restivo -# $Id: ncurses.mk,v 1.29 2003/11/12 09:31:12 andersen Exp $ +# $Id: ncurses.mk,v 1.30 2003/11/13 06:02:19 andersen Exp $ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Library General Public License as @@ -33,7 +33,7 @@ $(DL_DIR)/$(NCURSES_SOURCE): $(NCURSES_DIR)/.dist: $(DL_DIR)/$(NCURSES_SOURCE) gunzip -c $(DL_DIR)/$(NCURSES_SOURCE) | tar -C $(BUILD_DIR) -xvf - #use the local tic and not whatever the build system was going to find. - perl -i -p -e 's~\$$srcdir/shlib tic\$$suffix~/usr/bin/tic~' \ + sed -ie 's~\$$srcdir/shlib tic\$$suffix~/usr/bin/tic~' \ $(NCURSES_DIR)/misc/run_tic.in touch $(NCURSES_DIR)/.dist -- cgit v1.2.3