Magellan Linux

Annotation of /trunk/mozilla-thunderbird/patches/mozilla-firefox-2.0.0.5-respect-host-variable.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 279 - (hide annotations) (download)
Mon Jul 23 20:25:11 2007 UTC (16 years, 10 months ago) by niro
File size: 687 byte(s)
mozilla-thunderbird-2.0.0.5-r1

1 niro 279 # https://bugs.gentoo.org/show_bug.cgi?id=168893
2    
3     --- mozilla/configure.in.old 2007-03-02 23:28:27.000000000 +0200
4     +++ mozilla/configure.in 2007-03-02 23:29:23.000000000 +0200
5     @@ -825,7 +825,6 @@
6     OS_TARGET="${target_os}"
7     OS_ARCH=`echo $target_os | sed -e 's|/|_|g'`
8     OS_RELEASE=
9     - OS_TEST="${target_cpu}"
10     case "${target_os}" in
11     linux*) OS_ARCH=Linux ;;
12     solaris*) OS_ARCH=SunOS OS_RELEASE=5 ;;
13     @@ -837,8 +836,10 @@
14     OS_TARGET=`uname -s`
15     OS_ARCH=`uname -s | sed -e 's|/|_|g'`
16     OS_RELEASE=`uname -r`
17     - OS_TEST=`uname -m`
18     fi
19     +
20     +OS_TEST="${target_cpu}"
21     +
22     _COMPILER_PREFIX=
23    
24     HOST_OS_ARCH=`echo $host_os | sed -e 's|/|_|g'`