diff options
| author | Julian Pullen <Julian.Pullen@Sun.COM> | 2009-02-13 14:49:30 +0000 |
|---|---|---|
| committer | Julian Pullen <Julian.Pullen@Sun.COM> | 2009-02-13 14:49:30 +0000 |
| commit | 62615d1b6cd28c7db6dea1cdad6d219ffbcd7881 (patch) | |
| tree | 2608b7963d33b02d497abf5dca7e00284c62ef58 /usr/src | |
| parent | b9e93c10c0a2a4bb069d38bb311021a9478c4711 (diff) | |
| download | illumos-joyent-62615d1b6cd28c7db6dea1cdad6d219ffbcd7881.tar.gz | |
6803004 nightly build race condition failure in libadutils/libidmap
Diffstat (limited to 'usr/src')
| -rw-r--r-- | usr/src/lib/libadutils/Makefile | 6 | ||||
| -rw-r--r-- | usr/src/lib/libidmap/Makefile | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/usr/src/lib/libadutils/Makefile b/usr/src/lib/libadutils/Makefile index cded41b662..f3e3636e44 100644 --- a/usr/src/lib/libadutils/Makefile +++ b/usr/src/lib/libadutils/Makefile @@ -19,7 +19,7 @@ # CDDL HEADER END # # -# Copyright 2008 Sun Microsystems, Inc. All rights reserved. +# Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # @@ -28,6 +28,10 @@ include $(SRC)/lib/Makefile.lib SUBDIRS = $(MACH) $(BUILD64)SUBDIRS += $(MACH64) +# Both MACH and MACH64 subdirs invoke rpcgen on the same file, +# so to prevent collisions, we turn off parallelism. +.NO_PARALLEL: $(SUBDIRS) + all := TARGET = all clean := TARGET = clean clobber := TARGET = clobber diff --git a/usr/src/lib/libidmap/Makefile b/usr/src/lib/libidmap/Makefile index 87f8d55bbf..f7e9e4ee79 100644 --- a/usr/src/lib/libidmap/Makefile +++ b/usr/src/lib/libidmap/Makefile @@ -19,11 +19,9 @@ # CDDL HEADER END # # -# Copyright 2007 Sun Microsystems, Inc. All rights reserved. +# Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# include $(SRC)/lib/Makefile.lib @@ -33,6 +31,10 @@ HDRDIR = common SUBDIRS = $(MACH) $(BUILD64)SUBDIRS += $(MACH64) +# Both MACH and MACH64 subdirs invoke rpcgen on the same file, +# so to prevent collisions, we turn off parallelism. +.NO_PARALLEL: $(SUBDIRS) + POFILE = libidmap.po MSGFILES = `$(GREP) -l gettext common/*.[ch]` XGETFLAGS = -a |
