summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorAndrew G. Morgan <morgan@kernel.org>2021-08-30 20:01:13 -0700
committerAndrew G. Morgan <morgan@kernel.org>2021-08-30 20:02:22 -0700
commitf5ae31ebd3d49a064cb85ccd62a75198883cec3b (patch)
tree037c0884e7be60392381a6b6e60baf587a84b989 /progs
parent2bfe36c9999c852c79c0bba1c31b25285326b91d (diff)
downloadlibcap2-f5ae31ebd3d49a064cb85ccd62a75198883cec3b.tar.gz
Be more consistent with make variables.
Noticed that we weren't applying the same amount of flag discipline to local BUILD_* tool rules. Fixing that, I see we've been carrying a source code issue in libcap/_makenames.c for a while. (FIXED). Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
Diffstat (limited to 'progs')
-rw-r--r--progs/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/progs/Makefile b/progs/Makefile
index 51e9a63..0917dd3 100644
--- a/progs/Makefile
+++ b/progs/Makefile
@@ -22,10 +22,10 @@ DEPS = ../libcap/libcap.a
endif
../libcap/libcap.a:
- make -C ../libcap libcap.a
+ $(MAKE) -C ../libcap libcap.a
../libcap/libcap.so:
- make -C ../libcap libcap.so
+ $(MAKE) -C ../libcap libcap.so
$(BUILD): %: %.o $(DEPS)
$(CC) $(CFLAGS) -o $@ $< $(LIBCAPLIB) $(LDFLAGS)