Skip to content

Commit 084e320

Browse files
committed
OS-7412 Need idnkit for g11n
Reviewed by: Joshua M. Clulow <[email protected]> Reviewed by: John Levon <[email protected]> Approved by: Joshua M. Clulow <[email protected]>
1 parent 7d13771 commit 084e320

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

Makefile

+9-2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ include $(CURDIR)/../../build.env
2222
BASE = $(CURDIR)
2323
DESTDIR = $(BASE)/proto
2424

25+
#
26+
# This contains items that we only build during the strap build itself.
27+
#
28+
STRAP_ONLY = \
29+
idnkit
30+
2531
ifeq ($(STRAP),strap)
2632

2733
STRAPPROTO = $(DESTDIR)
@@ -41,7 +47,8 @@ SUBDIRS = \
4147
nss-nspr \
4248
openssl1x \
4349
perl \
44-
$(EXTRA_COMPILERS)
50+
$(EXTRA_COMPILERS) \
51+
$(STRAP_ONLY)
4552

4653
STRAPFIX += $(PRIMARY_COMPILER) $(EXTRA_COMPILERS)
4754
STRAPFIX_SUBDIRS=$(STRAPFIX:%=%.strapfix)
@@ -224,7 +231,7 @@ install: $(PRIMARY_COMPILER) $(SUBDIRS)
224231
endif
225232

226233
clean:
227-
-for dir in $(PRIMARY_COMPILER) $(SUBDIRS) binutils; \
234+
-for dir in $(PRIMARY_COMPILER) $(SUBDIRS) $(STRAP_ONLY) binutils; \
228235
do (cd $$dir; $(MAKE) DESTDIR=$(DESTDIR) clean); done
229236
-rm -rf proto
230237

idnkit/Makefile

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#
2+
# This file and its contents are supplied under the terms of the
3+
# Common Development and Distribution License ("CDDL"), version 1.0.
4+
# You may only use this file in accordance with the terms of version
5+
# 1.0 of the CDDL.
6+
#
7+
# A full copy of the text of the CDDL should have accompanied this
8+
# source. A copy of the CDDL is also available via the Internet at
9+
# http://www.illumos.org/license/CDDL.
10+
#
11+
12+
#
13+
# Copyright 2018 Joyent, Inc.
14+
#
15+
16+
VER = idnkit-2.3
17+
18+
include ../Makefile.defs
19+
20+
TARBALL = $(VER).tar.bz2
21+
TARBALL_COMPRESS = -j
22+
23+
include ../Makefile.targ
24+
include ../Makefile.targ.autoconf

idnkit/idnkit-2.3.tar.bz2

1.41 MB
Binary file not shown.

0 commit comments

Comments
 (0)