summaryrefslogtreecommitdiffstats
path: root/cvs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cvs.sh')
-rw-r--r--cvs.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/cvs.sh b/cvs.sh
index 0f8ce8d..7e0bbf2 100644
--- a/cvs.sh
+++ b/cvs.sh
@@ -225,7 +225,7 @@ touch stamp-h.in
configure_in()
{
rm -f configure.in configure.in.new
-kde_use_qt_param=
+kde_use_tqt_param=
test -f configure.files || { echo "need configure.files for configure.in"; exit 1; }
list=`fgrep -v "configure.in.bot" < configure.files | fgrep -v "configure.in.mid"`
: > configure.in.new
@@ -291,7 +291,7 @@ echo "AC_OUTPUT" >> configure.in.new
modulename=
if test -f configure.in.in; then
if head -n 2 configure.in.in | egrep "^#MIN_CONFIG\(.*\)$" > /dev/null; then
- kde_use_qt_param=`cat configure.in.in | sed -n -e "s/#MIN_CONFIG(\(.*\))/\1/p"`
+ kde_use_tqt_param=`cat configure.in.in | sed -n -e "s/#MIN_CONFIG(\(.*\))/\1/p"`
fi
if head -n 2 configure.in.in | egrep "^#MIN_CONFIG" > /dev/null; then
line=`grep "^AM_INIT_AUTOMAKE(" configure.in.in`
@@ -313,8 +313,8 @@ if test -z "$modulename" || test "$modulename" = "@MODULENAME@"; then
modulename=`echo $modulename | sed -e "s#-$esc_VERSION##"`
fi
-if test -n "$kde_use_qt_param"; then
- sed -e "s#^dnl KDE_USE_QT#KDE_USE_QT($kde_use_qt_param)#" \
+if test -n "$kde_use_tqt_param"; then
+ sed -e "s#^dnl KDE_USE_TQT#KDE_USE_TQT($kde_use_tqt_param)#" \
configure.in.new > configure.in && mv configure.in configure.in.new
fi
sed -e "s#@MODULENAME@#$modulename#" configure.in.new |