From dce801154a845a1ff443ecaeaf2fe8a2c896642d Mon Sep 17 00:00:00 2001 From: David Peter Date: Thu, 2 Nov 2023 17:19:17 +0100 Subject: [PATCH] Suggest /usr/local/include instead of /usr/include, closes #133 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4b81506..68d69ed 100644 --- a/README.md +++ b/README.md @@ -63,10 +63,10 @@ The code above produces this output ([try it yourself](https://repl.it/@sharkdp/ To make this practical, the `dbg.h` header should be readily available from all kinds of different places and in all kinds of environments. The quick & dirty way is to actually copy the header file -to `/usr/include` or to clone the repository and symlink `dbg.h` to `/usr/include/dbg.h`. +to `/usr/local/include` or to clone the repository and symlink `dbg.h` to `/usr/local/include/dbg.h`. ``` bash git clone https://github.com/sharkdp/dbg-macro -sudo ln -s $(readlink -f dbg-macro/dbg.h) /usr/include/dbg.h +sudo ln -s $(readlink -f dbg-macro/dbg.h) /usr/local/include/dbg.h ``` If you don't want to make untracked changes to your filesystem, check below if there is a package for your operating system or package manager.