[mupen64plus] 116/262: Correct spelling error endian_n_ess

Sven Eckelmann ecsv-guest at moszumanska.debian.org
Thu Nov 26 05:59:24 UTC 2015


This is an automated email from the git hooks/post-receive script.

ecsv-guest pushed a commit to branch master
in repository mupen64plus.

commit c9dc86b11b874881d4f836441374d95d1ab91b6d
Author: Sven Eckelmann <sven.eckelmann at gmx.de>
Date:   Wed Sep 2 22:57:46 2009 +0200

    Correct spelling error endian_n_ess
---
 debian/changelog                      |  2 +-
 debian/patches/119-debian-archs.patch | 44 +++++++++++++++++------------------
 2 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index b14777d..ca9da28 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,7 +6,7 @@ mupen64plus (1.5+dfsg1-3) UNRELEASED; urgency=low
     - Don't set NO_ASM parameter anymore as it is handled by
       119-debian-archs.patch
   * debian/patches:
-    - Add 119-debian-archs.patch, Define wordsize and endianess of
+    - Add 119-debian-archs.patch, Define wordsize and endianness of
       architectures supported by debian (Closes: #544673)
     - Update 118-ftbfs-debugger.patch, define dummy functions to decompile
       recompiled code on non-x86 architectures (Closes: #544662)
diff --git a/debian/patches/119-debian-archs.patch b/debian/patches/119-debian-archs.patch
index f22278b..2a5efa4 100644
--- a/debian/patches/119-debian-archs.patch
+++ b/debian/patches/119-debian-archs.patch
@@ -4,7 +4,7 @@ Date: Wed, 2 Sep 2009 12:26:37 +0200
 Subject: [PATCH] Define new cpu architectures
 
 mupen64plus must exactly know for which architectures it is build and
-which word size and endianess it has. Most architectures supported
+which word size and endianness it has. Most architectures supported
 by debian weren't listed here. That means that the build would
 probably fail or generate unusable binaries.
 To better support unknown architectures NO_ASM must be enabled by
@@ -41,7 +41,7 @@ index 5c7b73c..3a2e537 100644
 +    ARCH := 64BITS
    endif
 +  NO_ASM := 0
-+  CPU_ENDIANESS := LITTLE
++  CPU_ENDIANNESS := LITTLE
  endif
 -ifneq ("$(filter i%86,$(UNAME))","")
 -  CPU = X86
@@ -50,7 +50,7 @@ index 5c7b73c..3a2e537 100644
 +  CPU := X86
 +  ARCH := 32BITS
 +  NO_ASM := 0
-+  CPU_ENDIANESS := LITTLE
++  CPU_ENDIANNESS := LITTLE
  endif
 -ifeq ("$(UNAME)","ppc")
 -  CPU = PPC
@@ -60,7 +60,7 @@ index 5c7b73c..3a2e537 100644
 +  CPU := PPC
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
  endif
 -ifeq ("$(UNAME)","ppc64")
 -  CPU = PPC
@@ -70,19 +70,19 @@ index 5c7b73c..3a2e537 100644
 +  CPU := PPC
 +  ARCH := 64BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
 +endif
 +ifneq ("$(filter alpha%,$(UNAME))","")
 +  CPU := ALPHA
 +  ARCH := 64BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := LITTLE
++  CPU_ENDIANNESS := LITTLE
 +endif
 +ifneq ("$(filter arm%b,$(UNAME))","")
 +  CPU := ARM
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
 +else
 +ifneq ("$(filter arm%,$(UNAME))","")
 +  CPU := ARM
@@ -95,85 +95,85 @@ index 5c7b73c..3a2e537 100644
 +  CPU := HPPA
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
 +endif
 +ifeq ("$(UNAME)","ia64")
 +  CPU := IA64
 +  ARCH := 64BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := LITTLE
++  CPU_ENDIANNESS := LITTLE
 +endif
 +ifeq ("$(UNAME)","avr32")
 +  CPU := AVR32
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
 +endif
 +ifeq ("$(UNAME)","m32r")
 +  CPU := M32R
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
 +endif
 +ifeq ("$(UNAME)","m68k")
 +  CPU := M68K
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
 +endif
 +ifneq ("$(filter mips mipseb,$(UNAME))","")
 +  CPU := MIPS
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
 +endif
 +ifeq ("$(UNAME)","mipsel")
 +  CPU := MIPS
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := LITTLE
++  CPU_ENDIANNESS := LITTLE
 +endif
 +ifeq ("$(UNAME)","s390")
 +  CPU := S390
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
 +endif
 +ifeq ("$(UNAME)","s390x")
 +  CPU := S390
 +  ARCH := 64BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
 +endif
 +ifeq ("$(UNAME)","sh3")
 +  CPU := SH3
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := LITTLE
++  CPU_ENDIANNESS := LITTLE
 +endif
 +ifeq ("$(UNAME)","sh3eb")
 +  CPU := SH3
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
 +endif
 +ifeq ("$(UNAME)","sh4")
 +  CPU := SH4
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := LITTLE
++  CPU_ENDIANNESS := LITTLE
 +endif
 +ifeq ("$(UNAME)","sh4eb")
 +  CPU := SH4
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
 +endif
 +ifeq ("$(UNAME)","sparc")
 +  CPU := SPARC
 +  ARCH := 32BITS
 +  NO_ASM := 1
-+  CPU_ENDIANESS := BIG
++  CPU_ENDIANNESS := BIG
  endif
  
  # detect operation system. Currently just linux and OSX.
@@ -184,7 +184,7 @@ index 5c7b73c..3a2e537 100644
 -  CFLAGS += -mcpu=powerpc -D_BIG_ENDIAN
 +  CFLAGS += -mcpu=powerpc
 +endif
-+ifeq ($(CPU_ENDIANESS), BIG)
++ifeq ($(CPU_ENDIANNESS), BIG)
 +  CFLAGS += -D_BIG_ENDIAN
  endif
  

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/mupen64plus.git



More information about the Pkg-games-commits mailing list