summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/dependencies/tqt3/debian/patches/72_dont_trust_uname-m_use_dpkg-arch_instead.diff
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2019-04-03 22:56:40 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-04-03 22:56:40 +0900
commit11394aecd1f906fee2ebd2b90412aeba4651fbff (patch)
treebcf750380e6d9fc7dbe524e16bbe2afde25dcfa0 /ubuntu/maverick/dependencies/tqt3/debian/patches/72_dont_trust_uname-m_use_dpkg-arch_instead.diff
parentd24bd898174453b586ac90f2ef7a60165fa26fde (diff)
downloadtde-packaging-11394aecd1f906fee2ebd2b90412aeba4651fbff.tar.gz
tde-packaging-11394aecd1f906fee2ebd2b90412aeba4651fbff.zip
DEB: use _base folder for a distro instead of specific distros (squeeze
and maverick). Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ubuntu/maverick/dependencies/tqt3/debian/patches/72_dont_trust_uname-m_use_dpkg-arch_instead.diff')
-rw-r--r--ubuntu/maverick/dependencies/tqt3/debian/patches/72_dont_trust_uname-m_use_dpkg-arch_instead.diff50
1 files changed, 0 insertions, 50 deletions
diff --git a/ubuntu/maverick/dependencies/tqt3/debian/patches/72_dont_trust_uname-m_use_dpkg-arch_instead.diff b/ubuntu/maverick/dependencies/tqt3/debian/patches/72_dont_trust_uname-m_use_dpkg-arch_instead.diff
deleted file mode 100644
index b4e71d35b..000000000
--- a/ubuntu/maverick/dependencies/tqt3/debian/patches/72_dont_trust_uname-m_use_dpkg-arch_instead.diff
+++ /dev/null
@@ -1,50 +0,0 @@
-author: Sune Vuorela <debian@pusling.com>
-
---- a/configure
-+++ b/configure
-@@ -34,7 +34,44 @@ SUPPORTED=
- #-------------------------------------------------------------------------------
-
- # need that throughout the script
--UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
-+DPKG_ARCH=`(dpkg-architecture -qDEB_HOST_ARCH) 2>/dev/null` || UNAME_MACHINE=unknown
-+case $DPKG_ARCH in
-+ amd64)
-+ UNAME_MACHINE="x86_64"
-+ ;;
-+ arm)
-+ UNAME_MACHINE="armv4l"
-+ ;;
-+ armel)
-+ UNAME_MACHINE="armv5tel"
-+ ;;
-+ hppa)
-+ UNAME_MACHINE="parisc64"
-+ ;;
-+ hurd-i386)
-+ UNAME_MACHINE="i686-AT386"
-+ ;;
-+ i386)
-+ UNAME_MACHINE="i686"
-+ ;;
-+ kfreebsd-amd64)
-+ UNAME_MACHINE="x86_64"
-+ ;;
-+ kfreebsd-i386)
-+ UNAME_MACHINE="i586"
-+ ;;
-+ mipsel)
-+ UNAME_MACHINE="mips"
-+ ;;
-+ powerpc)
-+ UNAME_MACHINE="ppc"
-+ ;;
-+ *)
-+ UNAME_MACHINE="$DPKG_ARCH"
-+ ;;
-+
-+
-+esac
- UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
- UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
- UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown