diff options
author | Andras Timar <andras.timar@collabora.com> | 2013-12-20 11:25:37 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2013-12-20 15:55:00 +0100 |
commit | b55259eeb549482477c57d854f3de72aff345edb (patch) | |
tree | 35e474b8458ae776a8455f4f78e73ae28c611180 /solenv | |
parent | 377ec698afc98a9a098b456f4ae3c694498df6a2 (diff) |
typo fixes
Change-Id: Ia5f104bfd707bcf4e159c78ca2764c861fb0b6d9
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/doc/gbuild/solenv/gbuild/alllangres.mk | 2 | ||||
-rw-r--r-- | solenv/doc/gbuild/solenv/gbuild/executable.mk | 2 | ||||
-rw-r--r-- | solenv/doc/gbuild/solenv/gbuild/library.mk | 4 | ||||
-rw-r--r-- | solenv/doc/gbuild/solenv/gbuild/static_library.mk | 4 | ||||
-rw-r--r-- | solenv/gbuild/gbuild.mk | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/solenv/doc/gbuild/solenv/gbuild/alllangres.mk b/solenv/doc/gbuild/solenv/gbuild/alllangres.mk index e11c0042f4f3..980880d3b6c8 100644 --- a/solenv/doc/gbuild/solenv/gbuild/alllangres.mk +++ b/solenv/doc/gbuild/solenv/gbuild/alllangres.mk @@ -35,7 +35,7 @@ namespace gb SrsPartTarget(String name); friend class SrsTarget; - /// Platformdependant command to generate the dependencies for the srs target. + /// Platformdependent command to generate the dependencies for the srs target. static const Command command_dep( String srsname, Path sourcefile, diff --git a/solenv/doc/gbuild/solenv/gbuild/executable.mk b/solenv/doc/gbuild/solenv/gbuild/executable.mk index 935b58cb87f7..87b7992a71a9 100644 --- a/solenv/doc/gbuild/solenv/gbuild/executable.mk +++ b/solenv/doc/gbuild/solenv/gbuild/executable.mk @@ -32,7 +32,7 @@ namespace gb private: /// private helper function for the constructor void Executable_impl(LinkTarget library_linktarget); - /// platformdependant additional setup for constructor (used on Windows only) + /// platformdependent additional setup for constructor (used on Windows only) void Executable_platform(LinkTarget library_linktarget); /// helper function to wrap LinkTargets functions (this is more or less pimpl ...) void forward_to_linktarget(Function f); diff --git a/solenv/doc/gbuild/solenv/gbuild/library.mk b/solenv/doc/gbuild/solenv/gbuild/library.mk index a20c96f9efd6..c06a19e9bd83 100644 --- a/solenv/doc/gbuild/solenv/gbuild/library.mk +++ b/solenv/doc/gbuild/solenv/gbuild/library.mk @@ -29,7 +29,7 @@ namespace gb public: Library(String name); /// Returns how the library is named in the filesystem on the current platform. - /// Library filename schemes are defined in solenv/gbuild/libnames.mk (with some platformdependant hacks in solenv/gbuild/platform/*.mk. + /// Library filename schemes are defined in solenv/gbuild/libnames.mk (with some platformdependent hacks in solenv/gbuild/platform/*.mk. /// This function needs to be defined in solenv/gbuild/target_names.mk so that it is available to everywhere. Path get_filename(); @@ -37,7 +37,7 @@ namespace gb private: /// private helper function for the constructor void Library_impl(LinkTarget library_linktarget); - /// platformdependant additional setup for constructor (used on Windows only) + /// platformdependent additional setup for constructor (used on Windows only) void Library_platform( LinkTarget library_linktarget, Path dllfile); diff --git a/solenv/doc/gbuild/solenv/gbuild/static_library.mk b/solenv/doc/gbuild/solenv/gbuild/static_library.mk index a6d529717f54..fe0272382f7e 100644 --- a/solenv/doc/gbuild/solenv/gbuild/static_library.mk +++ b/solenv/doc/gbuild/solenv/gbuild/static_library.mk @@ -29,7 +29,7 @@ namespace gb public: StaticLibrary(String name); /// Returns how the library is named in the filesystem on the current platform. - /// StaticLibrary filename schemes are defined in solenv/gbuild/libnames.mk (with some platformdependant hacks in solenv/gbuild/platform/*.mk. + /// StaticLibrary filename schemes are defined in solenv/gbuild/libnames.mk (with some platformdependent hacks in solenv/gbuild/platform/*.mk. /// This function needs to be defined in solenv/gbuild/target_names.mk so that it is available to everywhere. Path get_filename(); @@ -48,7 +48,7 @@ namespace gb static const List<String> TARGETTYPEFLAGS; /// Mapping from symbolic static library names to filenames static const Map<StaticLibrary,Path> FILENAMES; - /// platformdependant file extension for static libraries + /// platformdependent file extension for static libraries static const String PLAINEXT; }; } diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk index 60c1c0272750..3d6b0f672bc4 100644 --- a/solenv/gbuild/gbuild.mk +++ b/solenv/gbuild/gbuild.mk @@ -269,7 +269,7 @@ $(eval $(call gb_Deliver_init)) # It is important to include them in the right order as that is # -- at least in part -- defining precedence. This is not an issue in the # WORKDIR as there are no nameing collisions there, but INSTDIR is a mess -# and precedence is important there. This is also platform dependant. +# and precedence is important there. This is also platform dependent. # # This is less of an issue with GNU Make versions > 3.82 which matches for # shortest stem instead of first match. However, upon intoduction this version |