diff options
author | Isaac Dunham <ibid.ag@gmail.com> | 2014-09-19 14:44:42 -0700 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-09-24 14:53:32 +0000 |
commit | 2e844011a12c1fdbc75789288c842c2dba8ed20b (patch) | |
tree | b76c7432f33545ffff5ebfb57571d33d509828ec /testing/ifupdown/ifupdown-no-dpkg.patch | |
parent | c53bd124b269d71b290459ba629f9eb6454a5521 (diff) | |
download | aports-2e844011a12c1fdbc75789288c842c2dba8ed20b.tar.bz2 aports-2e844011a12c1fdbc75789288c842c2dba8ed20b.tar.xz |
testing/ifupdown: update to 0.7.48.1
* fix url
* update patches
* move from unmaintained to testing
Diffstat (limited to 'testing/ifupdown/ifupdown-no-dpkg.patch')
-rw-r--r-- | testing/ifupdown/ifupdown-no-dpkg.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/ifupdown/ifupdown-no-dpkg.patch b/testing/ifupdown/ifupdown-no-dpkg.patch new file mode 100644 index 0000000000..4cb9268123 --- /dev/null +++ b/testing/ifupdown/ifupdown-no-dpkg.patch @@ -0,0 +1,26 @@ +diff --git a/defn2c.pl b/defn2c.pl +index c449de2..ef8d475 100755 +--- a/defn2c.pl ++++ b/defn2c.pl +@@ -2,7 +2,7 @@ + + use strict; + +-my $DEB_HOST_ARCH_OS = `dpkg-architecture -qDEB_HOST_ARCH_OS`; ++my $DEB_HOST_ARCH_OS = `uname -s|tr [A-Z] [a-z]`; + + $DEB_HOST_ARCH_OS =~ s/\n//; + +diff --git a/defn2man.pl b/defn2man.pl +index 6ddcfdd..f1e6bde 100755 +--- a/defn2man.pl ++++ b/defn2man.pl +@@ -2,7 +2,7 @@ + + use strict; + +-my $DEB_HOST_ARCH_OS = `dpkg-architecture -qDEB_HOST_ARCH_OS`; ++my $DEB_HOST_ARCH_OS = `uname -s | tr [A-Z] [a-z]`; + + $DEB_HOST_ARCH_OS =~ s/\n//; + |