diff options
author | Niklas Hambüchen <mail@nh2.me> | 2019-07-02T01·11+0200 |
---|---|---|
committer | Niklas Hambüchen <mail@nh2.me> | 2019-07-03T02·32+0200 |
commit | 96cd3d607374cb4bab27095a62a6f3a832518c5a (patch) | |
tree | 057e99076aa909de9ec223cdd256b01059334c61 /configure.ac | |
parent | 5c8f4772836cc14393068a9adce642da224615c4 (diff) |
autoconf: Change quotes in description.
The unbalanced single-quotes cause many editor syntax highlighters to interpret the rest of the file as a string literal, making it easier to make syntax mistakes in absence of proper highlighting.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f5b1614f19f1..398bac0476cc 100644 --- a/configure.ac +++ b/configure.ac @@ -42,7 +42,7 @@ esac AC_MSG_RESULT($system) AC_SUBST(system) -AC_DEFINE_UNQUOTED(SYSTEM, ["$system"], [platform identifier (`cpu-os')]) +AC_DEFINE_UNQUOTED(SYSTEM, ["$system"], [platform identifier ('cpu-os')]) # State should be stored in /nix/var, unless the user overrides it explicitly. |