diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-01 19:41:15 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-01 19:41:15 -0600 |
commit | ae3f95170046f4f2456daa046c826c036cd2a8f4 (patch) | |
tree | 5b61f06d29608da23bd9f93e04ef1390ee661204 /smoke/qt/generate_makefile_am.pl | |
parent | 79dd73b042edd81edb5e030459a43777ffa980bf (diff) | |
download | libtqt-perl-ae3f95170046f4f2456daa046c826c036cd2a8f4.tar.gz libtqt-perl-ae3f95170046f4f2456daa046c826c036cd2a8f4.zip |
Use smoketqt
Diffstat (limited to 'smoke/qt/generate_makefile_am.pl')
-rwxr-xr-x | smoke/qt/generate_makefile_am.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/smoke/qt/generate_makefile_am.pl b/smoke/qt/generate_makefile_am.pl index 49cdd49..8f528bd 100755 --- a/smoke/qt/generate_makefile_am.pl +++ b/smoke/qt/generate_makefile_am.pl @@ -14,16 +14,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; |