diff options
author | tomsmeding <tom.smeding@gmail.com> | 2019-11-23 15:07:38 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2019-11-23 15:07:38 +0100 |
commit | 6c1ec053b7cdc3ef173ea302cb9e804377f50aaf (patch) | |
tree | 3171b7c5201e430ae0ede8b667debfd53f0af46f /Makefile | |
parent | dcf1eef371adf5dee87787dc13279b6698d9a9a1 (diff) |
Fix build
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ BIN = cserver PLUGINDIR = plugins -PLUGINS = $(patsubst $(PLUGINDIR)/%,%,$(shell find $(PLUGINDIR)/ -maxdepth 1 -type d)) +PLUGINS = $(patsubst $(PLUGINDIR)/%,%,$(shell find $(PLUGINDIR) -mindepth 1 -maxdepth 1 -type d)) .PHONY: all clean remake |