Changeset 3555
- Timestamp:
- 09/02/07 23:54:51 (1 year ago)
- Files:
-
- trunk/freewrt/tools/mirmake/Makefile (modified) (1 diff)
- trunk/freewrt/tools/mirmake/patches/patch-Build_sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/tools/mirmake/Makefile
r3548 r3555 7 7 PKG_NAME= mirmake 8 8 PKG_VERSION= 20070702 9 PKG_RELEASE= 29 PKG_RELEASE= 3 10 10 PKG_MD5SUM= 13b428c7d9501fe95bb270b0cca47d9b 11 11 DISTFILES= ${PKG_NAME}-${PKG_VERSION}.cpio.gz trunk/freewrt/tools/mirmake/patches/patch-Build_sh
r3136 r3555 1 1 $FreeWRT$ 2 2 --- mirmake.orig/Build.sh Sat Aug 26 23:44:55 2006 3 +++ mirmake/Build.sh Wed Jul 4 15:36:1820073 +++ mirmake/Build.sh Sun Sep 2 21:49:02 2007 4 4 @@ -41,7 +41,7 @@ if [ x"$MAC" = x"" ]; then 5 5 fi … … 11 11 12 12 if [ x"$MOS" = x"" ]; then 13 @@ -61,8 +61,18 @@ Interix) 14 [ x"$MAC" = x"i386" ] && MAR=i386 15 [ -z "$BIN" ] && BIN=- 16 ;; 17 -BSD|Darwin|Linux) 18 +BSD|Darwin) 19 # Okay, we know this MACHINE_OS 20 + ;; 21 +Linux) 22 + # austriancoder's GNU/Linux has _no_ uname option to 23 + # display the correct machine architecture, nor some 24 + # kind of arch(1) utility like OpenBSD 25 + case $MAC in 26 + i[3456789]86) 27 + MAR=i386 28 + ;; 29 + esac 30 ;; 31 *) 32 echo "Error: we cannot continue with this MACHINE_OS"


