summaryrefslogtreecommitdiff
path: root/sutils
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2016-02-29 03:39:13 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-02-29 03:39:13 +0100
commit2f0b4c592b4f9fd3c6d5744a3bc077237ce9278d (patch)
tree210fa176b055efb2ea15a075f8e0abb15f686973 /sutils
parent9019d6fc527882b8e09ca210e997b43a7b77c70f (diff)
Fix parallel build
* console-client/Makefile (parser.tab.h): Redefine the standard yacc rule to make it build the header too, to avoid concurrency between the standard yacc rule and the rule that builds the header. * sutils/Makefile (OBJS): Append .o suffix to $(progs) instead of .c.
Diffstat (limited to 'sutils')
-rw-r--r--sutils/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sutils/Makefile b/sutils/Makefile
index e30bfb77..f4e18110 100644
--- a/sutils/Makefile
+++ b/sutils/Makefile
@@ -27,7 +27,7 @@ special-targets = $(scripts)
installationdir = $(sbindir)
SRCS = $(progs:=.c) clookup.c fstab.c update.c $(scripts:=.sh)
-OBJS = $(progs:=.c)
+OBJS = $(progs:=.o)
HURDLIBS = store shouldbeinlibc
include ../Makeconf