diff options
author | Thomas Voss <mail@thomasvoss.com> | 2022-10-13 00:10:27 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2022-10-13 00:10:51 +0200 |
commit | d3ffe404d37e5ab8f18e6dca68364aca934d2d4f (patch) | |
tree | 91baa261ff88e1104e308beb2c4e7a9c973e7616 | |
parent | 058f9d3d066c9247c61e99b376b186abda95c7c1 (diff) |
Escape backticks
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ DPREFIX = ${DESTDIR}${PREFIX} MANDIR = ${DPREFIX}/share/man all: - @echo "run `tup` to build the library" >&2 + @echo 'run `tup` to build the library' >&2 install: mkdir -p ${DPREFIX}/include ${DPREFIX}/lib ${DMANDIR}/man0 ${DMANDIR}/man3 |