blob: 7b4b761e6a684de10a7c5cf642903143482febd5 [file] [log] [blame]
Patrick Williams864cc432023-02-09 14:54:44 -06001From fc8e8d4cb19ff30e69aa1855332544f1017f974c Mon Sep 17 00:00:00 2001
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002From: Paul Gortmaker <paul.gortmaker@windriver.com>
3Date: Wed, 6 Aug 2014 14:54:12 -0400
Patrick Williams864cc432023-02-09 14:54:44 -06004Subject: [PATCH] defn2[c|man]: don't rely on dpkg-architecture to set arch
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005
6In yocto we'll always be cross compiling, and we'll always
7be building on linux for linux (vs. *BSD, hurd, etc.)
8
9Without this the arch is not detected, but it doesn't error
10out, and hence you get useless binaries that don't know any
11arch specific methods, and the end result will be strangeness
12like the loopback device not being configured/enabled.
13
14Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -050015Upstream-Status: Pending
Patrick Williams864cc432023-02-09 14:54:44 -060016
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017---
18 defn2c.pl | 6 +++---
19 defn2man.pl | 6 +++---
20 2 files changed, 6 insertions(+), 6 deletions(-)
21
22diff --git a/defn2c.pl b/defn2c.pl
Patrick Williams864cc432023-02-09 14:54:44 -060023index fa7a02e..bb4987d 100755
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024--- a/defn2c.pl
25+++ b/defn2c.pl
26@@ -2,9 +2,9 @@
27
28 use strict;
29
30-my $DEB_HOST_ARCH_OS = `dpkg-architecture -qDEB_HOST_ARCH_OS`;
31-
32-$DEB_HOST_ARCH_OS =~ s/\n//;
33+#my $DEB_HOST_ARCH_OS = `dpkg-architecture -qDEB_HOST_ARCH_OS`;
34+#$DEB_HOST_ARCH_OS =~ s/\n//;
35+my $DEB_HOST_ARCH_OS ="linux";
36
37 # declarations
38 my $address_family = "";
39diff --git a/defn2man.pl b/defn2man.pl
Brad Bishop96ff1982019-08-19 13:50:42 -040040index 6ddcfdd..c9c4dd0 100755
Patrick Williamsc124f4f2015-09-15 14:41:29 -050041--- a/defn2man.pl
42+++ b/defn2man.pl
43@@ -2,9 +2,9 @@
44
45 use strict;
46
47-my $DEB_HOST_ARCH_OS = `dpkg-architecture -qDEB_HOST_ARCH_OS`;
48-
49-$DEB_HOST_ARCH_OS =~ s/\n//;
50+#my $DEB_HOST_ARCH_OS = `dpkg-architecture -qDEB_HOST_ARCH_OS`;
51+#$DEB_HOST_ARCH_OS =~ s/\n//;
52+my $DEB_HOST_ARCH_OS = "linux";
53
54 # declarations
55 my $line;