summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/apt/apt/no-nls-dpkg.patch
blob: 98b6c96caace3d627541cb228c9e904b58c82261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Upstream-Status: Pending

Index: apt-1.2.24/apt-pkg/deb/dpkgpm.cc
===================================================================
--- apt-1.2.24.orig/apt-pkg/deb/dpkgpm.cc
+++ apt-1.2.24/apt-pkg/deb/dpkgpm.cc
@@ -54,6 +54,12 @@
 #include <apti18n.h>
 									/*}}}*/
 
+#ifdef USE_NLS
+#define _dpkg(x) dgettext("dpkg", x)
+#else
+#define _dpkg(x) x
+#endif
+
 using namespace std;
 
 APT_PURE static string
@@ -1703,7 +1709,7 @@ void pkgDPkgPM::WriteApportReport(const
    }
 
    // check if its not a follow up error 
-   const char *needle = dgettext("dpkg", "dependency problems - leaving unconfigured");
+   const char *needle = _dpkg("dependency problems - leaving unconfigured");
    if(strstr(errormsg, needle) != NULL) {
       std::clog << _("No apport report written because the error message indicates its a followup error from a previous failure.") << std::endl;
       return;