summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Kacur <jkacur@redhat.com>2015-09-23 16:02:34 +0200
committerJohn Kacur <jkacur@redhat.com>2015-10-05 16:14:42 +0200
commit685fb2fd01624435fb687d5736098577e08cd822 (patch)
tree79684062932ba61c82efac2209cec6cd1704fc0e
parenta8fd81efa718ec449d90cba8f41123ed521bd12b (diff)
downloadrt-tests-685fb2fd01624435fb687d5736098577e08cd822.tar.gz
Explicitly separate VPATH paths with a colon
VPATH paths can be separated by either a space or a colon. Explicitly insert a colon instead of relying on a space being inserted due to the spacing of our Makefile Signed-off-by: John Kacur <jkacur@redhat.com>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9f7de2f..4c0c096 100644
--- a/Makefile
+++ b/Makefile
@@ -84,8 +84,8 @@ VPATH += src/sigwaittest:
VPATH += src/svsematest:
VPATH += src/pmqtest:
VPATH += src/backfire:
-VPATH += src/lib
-VPATH += src/hackbench
+VPATH += src/lib:
+VPATH += src/hackbench:
%.o: %.c
$(CC) -D VERSION=$(VERSION) -c $< $(CFLAGS) $(CPPFLAGS)