diff options
author | OBATA Akio <[email protected]> | 2018-12-05 15:14:55 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-12-09 15:37:14 +0100 |
commit | 0460f8a285d669eaf863f8ecf8e7687624dd3964 (patch) | |
tree | d895e767ab6644fe403951a584d4e378764d6fd7 | |
parent | 30ec0d4edbc0b387cf0d4fe6f9024a5571ad9719 (diff) | |
download | admin-0460f8a285d669eaf863f8ecf8e7687624dd3964.tar.gz admin-0460f8a285d669eaf863f8ecf8e7687624dd3964.zip |
Remove unwanted -i option for perl.
This resolves bug 2984.
Signed-off-by: OBATA Akio <[email protected]>
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 2ba4c0d451dc234a89ea164ec10e4393008a7cc1)
-rw-r--r-- | am_edit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1376,7 +1376,7 @@ sub tag_UIFILES () $dep_lines .= "$source.h: $sourcedir$source.ui\n"; $dep_lines .= "\trm -rf $source.h;\n"; if (!$kdeopts{"qtonly"}) { - $dep_lines .= "\t\$(UIC) $sourcedir$source.ui | \$(PERL) -pi -e \"s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g\" >> $source.h ;\n"; + $dep_lines .= "\t\$(UIC) $sourcedir$source.ui | \$(PERL) -pe \"s,public QWizard,public KWizard,g; s,#include <qwizard.h>,#include <kwizard.h>,g\" >> $source.h ;\n"; } else { $dep_lines .= "\t\$(UIC) -o $source.h $sourcedir$source.ui\n"; } |