summaryrefslogtreecommitdiffstats
path: root/smoke/tde/generate_makefile_am.pl
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-07-23 01:37:49 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-23 01:37:49 +0200
commit3d89f5e5c4efb3a3e8fe05540ef4f7cf104d371f (patch)
tree9b254c811c8aa56429c642c7807312090d675c27 /smoke/tde/generate_makefile_am.pl
parentd2dde67b0fd0afbdfaa4411a135f1dc1192edf1f (diff)
downloadtdebindings-3d89f5e5c4efb3a3e8fe05540ef4f7cf104d371f.tar.gz
tdebindings-3d89f5e5c4efb3a3e8fe05540ef4f7cf104d371f.zip
Rename smokeqt -> smoketqt
Diffstat (limited to 'smoke/tde/generate_makefile_am.pl')
-rwxr-xr-xsmoke/tde/generate_makefile_am.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/smoke/tde/generate_makefile_am.pl b/smoke/tde/generate_makefile_am.pl
index 03f51747..61995278 100755
--- a/smoke/tde/generate_makefile_am.pl
+++ b/smoke/tde/generate_makefile_am.pl
@@ -12,16 +12,16 @@ open( MAKEFILE, "<$outdir/Makefile.am" ) or die;
my $makeFileData = '';
my $found = 0;
while (<MAKEFILE>) {
- if (/^libsmokeqt_la_SOURCES/)
+ if (/^libsmoketqt_la_SOURCES/)
{
$found = 1;
- $makeFileData .= "libsmokeqt_la_SOURCES = smokedata.cpp";
+ $makeFileData .= "libsmoketqt_la_SOURCES = smokedata.cpp";
}
$makeFileData .= $_ if (!$found);
}
close MAKEFILE;
-die "libsmokeqt_la_SOURCES not found" if (!$found);
+die "libsmoketqt_la_SOURCES not found" if (!$found);
open( MAKEFILE, ">$tempfile" ) or die;
print MAKEFILE $makeFileData;