diff options
author | Jason King <jason.king@joyent.com> | 2018-03-16 14:01:25 -0500 |
---|---|---|
committer | Jason King <jason.king@joyent.com> | 2018-05-01 14:29:57 -0500 |
commit | 11b4b83b31e63fb27818351677574b3560fb5886 (patch) | |
tree | a7c18a66da545185ad9df35baa85ab69374309ec | |
parent | ba1cf7661f591559209cec564525475276b2474c (diff) | |
download | illumos-joyent-11b4b83b31e63fb27818351677574b3560fb5886.tar.gz |
OS-6890 .WAIT doesn't work as an actual target in varpd
Reviewed by: Dan McDonald <danmcd@joyent.com>
Reviewed by: Mike Gerdts <mike.gerdts@joyent.com>
Approved by: Mike Gerdts <mike.gerdts@joyent.com>
-rw-r--r-- | usr/src/lib/varpd/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr/src/lib/varpd/Makefile b/usr/src/lib/varpd/Makefile index daa849572e..a0e4537ab9 100644 --- a/usr/src/lib/varpd/Makefile +++ b/usr/src/lib/varpd/Makefile @@ -10,10 +10,10 @@ # # -# Copyright 2015 Joyent, Inc. +# Copyright 2018 Joyent, Inc. # -SUBDIRS = libvarpd .WAIT direct files svp +SUBDIRS = libvarpd direct files svp all := TARGET = all clean := TARGET = clean @@ -26,6 +26,7 @@ lint := TARGET = lint .KEEP_STATE: all clean clobber install install_h check lint: $(SUBDIRS) +direct files svp: libvarpd $(SUBDIRS): FRC @cd $@; pwd; $(MAKE) $(TARGET) |