diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-02 15:17:15 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-03 06:54:05 +0000 |
commit | 3ffc206a4b70863fc1a340c0011eb4aa82819ae1 (patch) | |
tree | 6c83c32b8135b74d897db8e9610b713c53596e98 /solenv | |
parent | ba423579255848440318d6c468a604914901779b (diff) |
Fix typos
Change-Id: Ib25dadb25d8c2df1361de194f74cf3ddd459650d
Reviewed-on: https://gerrit.libreoffice.org/34783
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/concat-deps.c | 2 | ||||
-rw-r--r-- | solenv/bin/modules/installer/epmfile.pm | 2 | ||||
-rwxr-xr-x | solenv/bin/ooinstall | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/solenv/bin/concat-deps.c b/solenv/bin/concat-deps.c index c63d5a7ae73c..1d6907d26549 100644 --- a/solenv/bin/concat-deps.c +++ b/solenv/bin/concat-deps.c @@ -151,7 +151,7 @@ struct pool int primary; /**< primary allocation in bytes */ int secondary; /**< secondary allocation in bytes */ }; -#define POOL_ALIGN_INCREMENT 8 /**< Alignement, must be a power of 2 and of size > to sizeof(void*) */ +#define POOL_ALIGN_INCREMENT 8 /**< alignment, must be a power of 2 and of size > to sizeof(void*) */ static void* pool_take_extent(struct pool* pool, int allocate) diff --git a/solenv/bin/modules/installer/epmfile.pm b/solenv/bin/modules/installer/epmfile.pm index b7b4bcce1424..0dbc37a92cb9 100644 --- a/solenv/bin/modules/installer/epmfile.pm +++ b/solenv/bin/modules/installer/epmfile.pm @@ -65,7 +65,7 @@ sub read_packagemap { my $packagemapref = installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$onepackagemapname, $includepatharrayref, 0); - if ( $$packagemapref eq "" ) { installer::exiter::exit_program("ERROR: Could not find package map file \"$onepackagemapname\" (propery PACKAGEMAP)!", "read_packagemap"); } + if ( $$packagemapref eq "" ) { installer::exiter::exit_program("ERROR: Could not find package map file \"$onepackagemapname\" (property PACKAGEMAP)!", "read_packagemap"); } my $packagemapcontent = installer::files::read_file($$packagemapref); diff --git a/solenv/bin/ooinstall b/solenv/bin/ooinstall index 8d0f5be27512..83507a7bf647 100755 --- a/solenv/bin/ooinstall +++ b/solenv/bin/ooinstall @@ -80,7 +80,7 @@ if ($is_windows) { # FIXME: a better solution would be to fix installer to deal with broken symlinks # make distro-pack-install shufle with the SDK installation to make it LSB compliant -# it creates symlinks from the orignal path to /usr/share; they are not valid with $DESTDIR +# it creates symlinks from the original path to /usr/share; they are not valid with $DESTDIR # and potential second ooinstall call fails with strange error messages if the old tree is still there if ($destdir && "$ENV{DESTDIR}" ne "/" && -d "$ENV{DESTDIR}") { print "Cleaning destdir...\n"; |