* [ptxdist] [PATCH 1/2] Fix typos, grammar and missing/superfluous words
@ 2026-03-16 13:29 Markus Heidelberg via ptxdist
2026-03-16 13:29 ` [ptxdist] [PATCH 2/2] Replace non-ASCII em dash (U+2014) by a usual keyboard dash (hyphen-minus) Markus Heidelberg via ptxdist
0 siblings, 1 reply; 2+ messages in thread
From: Markus Heidelberg via ptxdist @ 2026-03-16 13:29 UTC (permalink / raw)
To: ptxdist; +Cc: Markus Heidelberg
In documentation, help texts and an error message.
Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de>
---
doc/daily_work.inc | 6 +++---
doc/dev_add_bin_only_files.rst | 2 +-
doc/ref_make_macros.rst | 2 +-
platforms/toolchain.in | 4 ++--
rules/iptables.in | 2 +-
rules/reproducible.in | 6 +++---
scripts/report/generator.py | 2 +-
7 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/doc/daily_work.inc b/doc/daily_work.inc
index 7071a0f15..f3bb41915 100644
--- a/doc/daily_work.inc
+++ b/doc/daily_work.inc
@@ -26,7 +26,7 @@ tree.
Configuring the PTXdist Project
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.. note:: assumption is here, the directory ``/myprj`` contains a valid PTXdist project.
+.. note:: assumption is here, the directory ``~/myprj`` contains a valid PTXdist project.
To make PTXdist use of this kernel source tree, instead of an archive we
can simply create a link now:
@@ -454,7 +454,7 @@ command line parameters.
is two times the available CPU cores.
``-je<number>``
- this defines the number of packages to be build in parallel. The
+ this defines the number of packages to be built in parallel. The
default is one package at a time.
``-j<number>``
@@ -469,7 +469,7 @@ command line parameters.
A much softer setup is to just use the ``-j<number>`` parameter. This will run
up to ``<number>`` tasks at the same time which will be spread over everything
-to do. This will create a system load which is much user friendly. Even the
+to do. This will create a system load which is much more user friendly. Even the
filesystem load is smoother with this parameter.
Building in Background
diff --git a/doc/dev_add_bin_only_files.rst b/doc/dev_add_bin_only_files.rst
index 9031e437c..265b8c2f4 100644
--- a/doc/dev_add_bin_only_files.rst
+++ b/doc/dev_add_bin_only_files.rst
@@ -14,7 +14,7 @@ source code format.
Add Binary Files File by File
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-Doing to on a file by file base can happen by just using the ``install_copy``
+Doing so on a file by file base can happen by just using the ``install_copy``
macro in the *targetinstall* stage in our own customized rules file.
.. code-block:: none
diff --git a/doc/ref_make_macros.rst b/doc/ref_make_macros.rst
index a81d54961..07d6cb53a 100644
--- a/doc/ref_make_macros.rst
+++ b/doc/ref_make_macros.rst
@@ -254,7 +254,7 @@ The ``<source>`` parameter can be:
*foo* example package can be a ``$(FOO_DIR)/foo``.
* a minus sign (``-``). PTXdist uses the <destination>
parameter in this case to locate the file to copy from.
- The <destination> is uses a path relative to the :ref:`package install
+ The <destination> is used as path relative to the :ref:`package install
directory<pkg_pkgdir>`. This only works if the package uses the default
or a similar *install* stage. For our *foo* example used source file is
``<platform-dir>/packages/foo-1.1.0/<destination>``.
diff --git a/platforms/toolchain.in b/platforms/toolchain.in
index 49c9fddef..5bdf1c96b 100644
--- a/platforms/toolchain.in
+++ b/platforms/toolchain.in
@@ -7,8 +7,8 @@ config CROSSCHAIN_VENDOR
prompt "check for specific toolchain vendor"
default "OSELAS.Toolchain-2020.08"
help
- Add here an unique vendor string to ensure this project will
- be build with the correct toolchain.
+ Add here a unique vendor string to ensure this project will
+ be built with the correct toolchain.
Leave this entry empty to omit this check.
To use this feature add a file called 'ptxconfig' to the bin/ folder of
your toolchain. This file should contain at least one variable definition:
diff --git a/rules/iptables.in b/rules/iptables.in
index d98f1ac4e..c52f7009d 100644
--- a/rules/iptables.in
+++ b/rules/iptables.in
@@ -72,7 +72,7 @@ config IPTABLES_LIBNFNETLINK
bool
prompt "configure libnfnetlink"
help
- Select if iptables should be build against libnfnetlink
+ Select if iptables should be built against libnfnetlink
config IPTABLES_NFTABLES_COMPAT
bool
diff --git a/rules/reproducible.in b/rules/reproducible.in
index 3f3e6b269..b725e204c 100644
--- a/rules/reproducible.in
+++ b/rules/reproducible.in
@@ -19,14 +19,14 @@ config REPRODUCIBLE_TIMESTAMP_PTXDIST
bool
prompt "ptxdist version"
help
- Use the year and month of the PTXdist version to generated the
+ Use the year and month of the PTXdist version to generate the
timestamp.
config REPRODUCIBLE_TIMESTAMP_TOOLCHAIN
bool
prompt "toolchain version"
help
- Use the year and month of the toolchain version to generated the
+ Use the year and month of the toolchain version to generate the
timestamp. This only works for OSELAS.Toolchain.
This is useful to keep the timestamp stable across PTXdist
version updates. When a toolchain update happens, then the
@@ -54,7 +54,7 @@ config REPRODUCIBLE_TIMESTAMP_STRING
Supply a custom fake timestamp to be injected to the build.
The timestamp is passed to 'date --date', e.g. "2018-11-01 UTC".
- Note: the timestamp should contain include the timezone.
+ Note: the timestamp should include the timezone.
Otherwise timezone changes may produce different results.
endif
diff --git a/scripts/report/generator.py b/scripts/report/generator.py
index da0552c04..e1a487622 100644
--- a/scripts/report/generator.py
+++ b/scripts/report/generator.py
@@ -136,7 +136,7 @@ node [ shape=point fixedsize=true width=0.1 ];
tmp = version.split(':')
if len(tmp) > 2:
raise ReportException(
- f'cve-version "{version}" contains more than on ":"')
+ f'cve-version "{version}" contains more than one ":"')
return tmp[0], tmp[1] if len(tmp) > 1 else '*'
def create_cpe_ids(self, pkg):
--
2.43.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* [ptxdist] [PATCH 2/2] Replace non-ASCII em dash (U+2014) by a usual keyboard dash (hyphen-minus)
2026-03-16 13:29 [ptxdist] [PATCH 1/2] Fix typos, grammar and missing/superfluous words Markus Heidelberg via ptxdist
@ 2026-03-16 13:29 ` Markus Heidelberg via ptxdist
0 siblings, 0 replies; 2+ messages in thread
From: Markus Heidelberg via ptxdist @ 2026-03-16 13:29 UTC (permalink / raw)
To: ptxdist; +Cc: Markus Heidelberg
It was rendered as ~@~T in menuconfig.
Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de>
---
rules/casync.in | 2 +-
rules/nodejs.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/casync.in b/rules/casync.in
index e68fff1c2..2135e84ff 100644
--- a/rules/casync.in
+++ b/rules/casync.in
@@ -17,7 +17,7 @@ menuconfig CASYNC
select XZ if CASYNC_LZMA
select ZLIB if CASYNC_ZLIB
help
- casync — Content Addressable Data Synchronizer.
+ casync - Content Addressable Data Synchronizer.
if CASYNC
diff --git a/rules/nodejs.in b/rules/nodejs.in
index ba6b871a5..d6216e2ec 100644
--- a/rules/nodejs.in
+++ b/rules/nodejs.in
@@ -15,7 +15,7 @@ config NODEJS
Node.js is an open-source, cross-platform, JavaScript runtime
environment that executes JavaScript code outside of a browser.
Node.js lets developers use JavaScript to write command line
- tools and for server-side scripting—running scripts server-side
+ tools and for server-side scripting - running scripts server-side
to produce dynamic web page content before the page is sent to
the user's web browser. Consequently, Node.js represents a
"JavaScript everywhere" paradigm, unifying web-application
--
2.43.0
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-03-16 13:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-03-16 13:29 [ptxdist] [PATCH 1/2] Fix typos, grammar and missing/superfluous words Markus Heidelberg via ptxdist
2026-03-16 13:29 ` [ptxdist] [PATCH 2/2] Replace non-ASCII em dash (U+2014) by a usual keyboard dash (hyphen-minus) Markus Heidelberg via ptxdist
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox