]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
docs: Update links to updated docs 10573/head
authorFaheel Ahmad <faheel@live.in>
Tue, 30 Oct 2018 17:31:20 +0000 (23:01 +0530)
committerFaheel Ahmad <faheel@live.in>
Tue, 30 Oct 2018 17:31:20 +0000 (23:01 +0530)
README.md
docs/CONTRIBUTING.md
meson.build
src/basic/verbs.c

index b0b0a86538494f02ec46c8e534ae1f21dceb02fd..7d6e0d99a802116403ad7fa1a1d0b77a7655dd39 100644 (file)
--- a/README.md
+++ b/README.md
 
 General information about systemd can be found in the [systemd Wiki](https://www.freedesktop.org/wiki/Software/systemd).
 
-Information about build requirements are provided in the [README file](../master/README).
+Information about build requirements is provided in the [README file](README).
 
-Consult our [NEWS file](../master/NEWS) for information about what's new in the most recent systemd versions.
+Consult our [NEWS file](NEWS) for information about what's new in the most recent systemd versions.
 
-Please see the [HACKING file](../master/docs/HACKING) for information how to hack on systemd and test your modifications.
+Please see the [Hacking guide](docs/HACKING.md) for information on how to hack on systemd and test your modifications.
 
-Please see our [Contribution Guidelines](../master/docs/CONTRIBUTING.md) for more information about filing GitHub Issues and posting GitHub Pull Requests.
+Please see our [Contribution Guidelines](docs/CONTRIBUTING.md) for more information about filing GitHub Issues and posting GitHub Pull Requests.
 
-When preparing patches for systemd, please follow our [Coding Style Guidelines](../master/docs/CODING_STYLE).
+When preparing patches for systemd, please follow our [Coding Style Guidelines](docs/CODING_STYLE.md).
 
 If you are looking for support, please contact our [mailing list](https://lists.freedesktop.org/mailman/listinfo/systemd-devel) or join our [IRC channel](irc://irc.freenode.org/%23systemd).
 
index ea15325fe95bc8b153d85e8c7ad19eb877e6c425..6cfdd6f179981558747ddc8604c6a6e16c8cfcf0 100644 (file)
@@ -24,8 +24,8 @@ If you discover a security vulnerability, we'd appreciate a non-public disclosur
 ## Posting Pull Requests
 
 * Make sure to post PRs only relative to a very recent git master.
-* Follow our [Coding Style](https://raw.githubusercontent.com/systemd/systemd/master/docs/CODING_STYLE) when contributing code. This is a requirement for all code we merge.
-* Please make sure to test your change before submitting the PR. See [HACKING](https://raw.githubusercontent.com/systemd/systemd/master/docs/HACKING) for details how to do this.
+* Follow our [Coding Style](CODING_STYLE.md) when contributing code. This is a requirement for all code we merge.
+* Please make sure to test your change before submitting the PR. See the [Hacking guide](HACKING.md) for details on how to do this.
 * Make sure to run the test suite locally, before posting your PR. We use a CI system, meaning we don't even look at your PR, if the build and tests don't pass.
 * If you need to update the code in an existing PR, force-push into the same branch, overriding old commits with new versions.
 * After you have pushed a new version, add a comment about the new version (no notification is sent just for the commits, so it's easy to miss the update without an explicit comment). If you are a member of the systemd project on GitHub, remove the `reviewed/needs-rework` label.
index 3b010215629662608993d5e3ee6d8c0605dff176..b01365b6ddf47646b425d9c06d1fc05de710065e 100644 (file)
@@ -2827,10 +2827,10 @@ install_data('LICENSE.GPL2',
              'LICENSE.LGPL2.1',
              'NEWS',
              'README',
-             'docs/CODING_STYLE',
+             'docs/CODING_STYLE.md',
              'docs/DISTRO_PORTING.md',
              'docs/ENVIRONMENT.md',
-             'docs/HACKING',
+             'docs/HACKING.md',
              'docs/TRANSIENT-SETTINGS.md',
              'docs/TRANSLATORS.md',
              'docs/UIDS-GIDS.md',
index 34c7708080499f5568e8082505ce20cda63d6f88..f68c2bae0880ee6f09aa683e2cf57491949141ab 100644 (file)
@@ -23,7 +23,7 @@ bool running_in_chroot_or_offline(void) {
         /* Added to support use cases like rpm-ostree, where from %post scripts we only want to execute "preset", but
          * not "start"/"restart" for example.
          *
-         * See doc/ENVIRONMENT.md for docs.
+         * See docs/ENVIRONMENT.md for docs.
          */
         r = getenv_bool("SYSTEMD_OFFLINE");
         if (r < 0 && r != -ENXIO)