diff options
author | Michele Calgaro <[email protected]> | 2018-09-08 18:51:48 +0900 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-09-16 17:59:45 +0200 |
commit | 7ed4760de47e51dc2148c6b1b4aecbcfcf05eb3f (patch) | |
tree | 75e76d76f78c2f505bf9d2af8c0f3aed8567962c /cvs.sh | |
parent | 75306d2d1fe3eea200549805583bc9842c5ee172 (diff) | |
download | admin-7ed4760de47e51dc2148c6b1b4aecbcfcf05eb3f.tar.gz admin-7ed4760de47e51dc2148c6b1b4aecbcfcf05eb3f.zip |
Conversion qt -> tqt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'cvs.sh')
-rw-r--r-- | cvs.sh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 | |