From 73da1dc813757ec2c9cba699453a6ced536cf9f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 7 Jun 2020 11:44:27 +0200 Subject: [PATCH] Use dcopildng as the default instead of dcopidl. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko (cherry picked from commit 3e80abcba548f353276a4f3088f9e0bb6295039c) --- am_edit | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/am_edit b/am_edit index 085f49d..7c1a582 100644 --- a/am_edit +++ b/am_edit @@ -1262,9 +1262,8 @@ sub tag_IDLFILES () } if ($allidls !~ /$source\_kidl/) { - - $use_ng = ($MakefileData =~ /\n$source\_DCOPIDLNG\s*=\s*(\S+)\n/); - $dcopidl = $use_ng ? "KDECONFIG=\"\$(KDECONFIG)\" \$(TQTDCOPIDLNG)" : " \$(TQTDCOPIDL)"; + + $dcopidl = "KDECONFIG=\"\$(KDECONFIG)\" \$(TQTDCOPIDLNG)"; $dep_lines .= "$source.kidl: $sourcedir$source.h \$(DCOP_DEPENDENCIES)\n"; $dep_lines .= "\t$dcopidl $sourcedir$source.h > $source.kidl || ( rm -f $source.kidl ; false )\n";