diff options
author | Daniel Hahler <git@thequod.de> | 2019-10-04 22:10:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-04 22:10:16 +0200 |
commit | 402afb08959c353a50e040dd0bdcc7cd7aa73041 (patch) | |
tree | ca88418c7caf46d238e10f38657f25019e6ef889 /src | |
parent | b4ea09cc064034f43808662c40cc1fff14284432 (diff) | |
download | rneovim-402afb08959c353a50e040dd0bdcc7cd7aa73041.tar.gz rneovim-402afb08959c353a50e040dd0bdcc7cd7aa73041.tar.bz2 rneovim-402afb08959c353a50e040dd0bdcc7cd7aa73041.zip |
Makefile: use `$TMPDIR` below `src/nvim/testdir` (#11153)
This makes it ignored/cleaned automatically.
It was made absolute in 8821579ba, but to the root back then.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index d1a449c7cc..08353509af 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -11,7 +11,7 @@ ROOT := ../../.. export SHELL := sh export NVIM_PRG := $(NVIM_PRG) -export TMPDIR := $(abspath ../../../Xtest-tmpdir) +export TMPDIR := $(abspath Xtest-tmpdir) SCRIPTS_DEFAULT = \ test42.out \ |