rev 3582 - in trunk/packages/kdeadmin/debian: . patches

Pierre Habouzit madcoder at costa.debian.org
Tue Apr 18 11:22:49 UTC 2006


Author: madcoder
Date: 2006-04-18 11:22:48 +0000 (Tue, 18 Apr 2006)
New Revision: 3582

Added:
   trunk/packages/kdeadmin/debian/patches/10_kpackage_sources.diff
Modified:
   trunk/packages/kdeadmin/debian/changelog
Log:
fix for 358296: use sh -c "/bin/echo -e '...

instead of sh -c "echo -e ...


sending patch upstream



Modified: trunk/packages/kdeadmin/debian/changelog
===================================================================
--- trunk/packages/kdeadmin/debian/changelog	2006-04-18 10:12:10 UTC (rev 3581)
+++ trunk/packages/kdeadmin/debian/changelog	2006-04-18 11:22:48 UTC (rev 3582)
@@ -2,6 +2,11 @@
 
   !!! Next release or branch pull will include the fix for #362968 !!!
 
+  +++ Changes by Pierre Habouzit:
+
+  * dash has an internal echo that does not know about -e. force it to use
+    /bin/echo instead. (Closes: #358296).
+
  -- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org>  Mon, 17 Apr 2006 13:07:41 -0400
 
 kdeadmin (4:3.5.2-1) unstable; urgency=low

Added: trunk/packages/kdeadmin/debian/patches/10_kpackage_sources.diff
===================================================================
--- trunk/packages/kdeadmin/debian/patches/10_kpackage_sources.diff	2006-04-18 10:12:10 UTC (rev 3581)
+++ trunk/packages/kdeadmin/debian/patches/10_kpackage_sources.diff	2006-04-18 11:22:48 UTC (rev 3582)
@@ -0,0 +1,12 @@
+diff -Nrua kdeadmin-3.5.2.old/kpackage/debAptInterface.cpp kdeadmin-3.5.2/kpackage/debAptInterface.cpp
+--- kdeadmin-3.5.2.old/kpackage/debAptInterface.cpp	2005-10-10 16:53:28.000000000 +0200
++++ kdeadmin-3.5.2/kpackage/debAptInterface.cpp	2006-04-18 13:16:05.000000000 +0200
+@@ -511,7 +511,7 @@
+ 
+ void DEBAPT::writeApt(const QStringList &list) {
+   kdDebug() << "writeApt\n";
+-  QString cmd = "sh -c \"echo -e '";
++  QString cmd = "sh -c \"/bin/echo -e '";
+   for ( QStringList::ConstIterator it = list.begin(); it != list.end(); ++it ) {
+     QString s = *it;
+     s.replace("\""," ");




More information about the pkg-kde-commits mailing list