diff options
author | Klemens Nanni <kl3@posteo.org> | 2018-02-05 19:42:08 +0100 |
---|---|---|
committer | hut <hut@hut.pm> | 2018-02-05 20:04:17 +0100 |
commit | 08e43b29066c886cf4f7461dc573aaf74307d35d (patch) | |
tree | 9b4842fed16639fe14ac9013c23e5285a4c3206c /Makefile | |
parent | afdd6aafcc0654424f8901e8aa83948382ef7bd2 (diff) | |
download | ranger-08e43b29066c886cf4f7461dc573aaf74307d35d.tar.gz |
Replace -not operator with POSIX compliant !
This ensures compatibility with non-GNU implementations like OpenBSD's find(1). -and is already implied by juxtaposition, thus remove it.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 99d3f53e..47e2fa01 100644 --- a/Makefile +++ b/Makefile @@ -67,9 +67,9 @@ doc: cleandoc TEST_PATHS_MAIN = \ $(shell find ./ranger -mindepth 1 -maxdepth 1 -type d \ - -and -not -name '__pycache__' \ - -and -not -path './ranger/config' \ - -and -not -path './ranger/data' \ + ! -name '__pycache__' \ + ! -path './ranger/config' \ + ! -path './ranger/data' \ ) \ ./ranger/__init__.py \ $(shell find ./doc/tools ./examples -type f -name '*.py') \ |