]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
trivial: fix typo 'informations'
authorThomas De Schampheleire <patrickdepinguin@gmail.com>
Thu, 24 Jul 2014 18:07:02 +0000 (20:07 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thu, 24 Jul 2014 20:31:20 +0000 (22:31 +0200)
In English, unlike in French, almost all usages of the word 'information'
are uncountable, meaning that 'informations' is invalid.
This patch fixes this typo throughout the tree, except in CHANGES and
docs/news.html (historic text).

Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
board/minnowboard/readme.txt
package/pkg-autotools.mk
package/pkg-cmake.mk
package/pkg-generic.mk
package/pkg-luarocks.mk
package/pkg-python.mk
support/scripts/xorg-release

index b62b677dfcf3af081ecf167c56ed8c4eaf8915e1..62ffa92e0b8361eb26dbaf3e95f3ed5030672797 100644 (file)
@@ -36,5 +36,5 @@ Prepare the SD card for the Minnow Board
 
  4. Enjoy
 
-Additional informations about this board can be found at
+Additional information about this board can be found at
 http://www.minnowboard.org/.
index db3736c05892bcbd179f627dc76c8fcca17ccae9..bcc648dd61590dc3f99a0aa90368ab13ef4dbe75 100644 (file)
@@ -9,7 +9,7 @@
 # infrastructure
 #
 # In terms of implementation, this autotools infrastructure requires
-# the .mk file to only specify metadata informations about the
+# the .mk file to only specify metadata information about the
 # package: name, version, download URL, etc.
 #
 # We still allow the package .mk file to override what the different
index adffbecc315f80c4e58e786ca0b96ec73a1111e8..30198a93c12316ccc3c354b49aeffdb8d79a748a 100644 (file)
@@ -9,7 +9,7 @@
 # infrastructure
 #
 # In terms of implementation, this CMake infrastructure requires
-# the .mk file to only specify metadata informations about the
+# the .mk file to only specify metadata information about the
 # package: name, version, download URL, etc.
 #
 # We still allow the package .mk file to override what the different
index 03cbf962ceb2f95b5e8768bafefa3232ae28641b..fb4b849f922c94347a0050313f6992862d3cf39b 100644 (file)
@@ -13,7 +13,7 @@
 # In terms of implementation, this generic infrastructure requires the
 # .mk file to specify:
 #
-#   1. Metadata informations about the package: name, version,
+#   1. Metadata information about the package: name, version,
 #      download URL, etc.
 #
 #   2. Description of the commands to be executed to configure, build
@@ -304,7 +304,7 @@ define inner-generic-package
 # already defined. For some variables (version, source, site and
 # subdir), if they are undefined, we try to see if a variable without
 # the HOST_ prefix is defined. If so, we use such a variable, so that
-# these informations have only to be specified once, for both the
+# this information has only to be specified once, for both the
 # target and host packages of a given .mk file.
 
 $(2)_TYPE                       =  $(4)
index d9373e13d555a5255ca6521cd2ee939317bc5c65..be0d4cc072fd6d60bf0b76df095dfda9170df116 100644 (file)
@@ -12,7 +12,7 @@
 # infrastructure
 #
 # In terms of implementation, this LuaRocks infrastructure requires
-# the .mk file to only specify metadata informations about the
+# the .mk file to only specify metadata information about the
 # package: name, version, etc.
 #
 ################################################################################
index d37a03f692cd1107aed0b2f3789daf1ea578942b..d49e5c231ebb78994f97f6362612f5dfd9a10d3b 100644 (file)
@@ -9,7 +9,7 @@
 # infrastructure
 #
 # In terms of implementation, this Python infrastructure requires the
-# .mk file to only specify metadata informations about the package:
+# .mk file to only specify metadata information about the package:
 # name, version, download URL, etc.
 #
 # We still allow the package .mk file to override what the different
index a4f090d1d9b7955c922e173fe230c0c36f0d6f9f..66fc100b5ecf0f5174e51d2a2e27f28ab3780fb5 100755 (executable)
@@ -101,7 +101,7 @@ def buildroot_get_version(dirname):
             return m.group(2)
     return None
 
-# Augment the informations of the X.org list of packages (given as
+# Augment the information of the X.org list of packages (given as
 # argument) by details about their packaging in Buildroot. Those
 # details are found by looking at the contents of package/x11r7/.
 def get_buildroot_pkgs(packages):
@@ -114,7 +114,7 @@ def get_buildroot_pkgs(packages):
         version = buildroot_get_version(d)
         if packages.has_key(pkgname):
             # There is a X.org package of the same name, so we just
-            # add informations to the existing dict entry.
+            # add information to the existing dict entry.
             packages[pkgname]['br-version'] = version
             packages[pkgname]['br-name'] = d
         else: