aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Borner2020-07-22 18:03:32 +0200
committerMarvin Borner2020-07-22 18:03:32 +0200
commitc0a2074864e668b005eea8f50c6719bceb66bf20 (patch)
tree8d5f0cbfc256674937b227cab236902a700f72be
parent5121d4bc820b39901461c759a8fbd57d3a8462e3 (diff)
Fixed makefile export
-rwxr-xr-xrun4
1 files changed, 2 insertions, 2 deletions
diff --git a/run b/run
index 060c049..63e21d3 100755
--- a/run
+++ b/run
@@ -94,9 +94,9 @@ make_sync() {
ctags -R --exclude=.git --exclude=build --exclude=iso --exclude=cross .
make --always-make --dry-run |
- grep -wE 'gcc|g++' |
+ grep -wE 'gcc' |
grep -w '\-c' |
- jq -nR '[inputs|{directory:".", command:., file: match(" [^ ]+$").string[1:]}]' \
+ jq -nR '[inputs|{directory:"'"$(pwd)"'", command:., file: match(" [^ ]+$").string[1:]}]' \
>compile_commands.json
}