diff options
| author | Richard Lowe <richlowe@richlowe.net> | 2016-01-22 23:19:32 -0500 | 
|---|---|---|
| committer | Richard Lowe <richlowe@richlowe.net> | 2016-02-06 18:53:03 -0500 | 
| commit | 6d6fcbbb256ba9a8fe3e6076ae8a1f493b1f1a99 (patch) | |
| tree | 88409e4b4cda99a7bc2334d7e6fffa886acc24cf /usr/src | |
| parent | aeac2d873b68a43f6650e0d0f021c02f5a653a21 (diff) | |
| download | illumos-joyent-6d6fcbbb256ba9a8fe3e6076ae8a1f493b1f1a99.tar.gz | |
6600 cmd/fm should use the msgfmt(1) that Makefile.master tells it to
Reviewed by: Toomas Soome <tsoome@me.com>
Reviewed by: Robert Mustacchi <rm@joyent.com>
Approved by: Dan McDonald <danmcd@omniti.com>
Diffstat (limited to 'usr/src')
| -rw-r--r-- | usr/src/cmd/fm/dicts/Makefile | 2 | ||||
| -rw-r--r-- | usr/src/cmd/print/Makefile | 3 | ||||
| -rw-r--r-- | usr/src/cmd/sgs/messages/Makefile.com | 2 | 
3 files changed, 2 insertions, 5 deletions
| diff --git a/usr/src/cmd/fm/dicts/Makefile b/usr/src/cmd/fm/dicts/Makefile index 8e0bbd1545..22bebd3ae8 100644 --- a/usr/src/cmd/fm/dicts/Makefile +++ b/usr/src/cmd/fm/dicts/Makefile @@ -101,7 +101,7 @@ $(ROOTLCDIR)/%: %  	$(INS.file)  %.mo: %.po -	msgfmt -s -o $@ $< +	$(MSGFMT) -o $@ $<  lint:  	@for name in $(DCNAMES); do\ diff --git a/usr/src/cmd/print/Makefile b/usr/src/cmd/print/Makefile index c22b11279c..d8c55ef13a 100644 --- a/usr/src/cmd/print/Makefile +++ b/usr/src/cmd/print/Makefile @@ -22,7 +22,6 @@  # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.  # Use is subject to license terms.  # -# ident	"%Z%%M%	%I%	%E% SMI"  #  # cmd/print/Makefile  # @@ -89,7 +88,7 @@ _msg_test: scripts  	@/bin/cat messages.po scripts/scripts.po | sed '/domain/d' > $(POFILE)  	echo 'domain "SUNW_OST_OSCMD"' > SUNW_OST_OSCMD.po  	cat $(POFILE) >> SUNW_OST_OSCMD.po -	msgfmt SUNW_OST_OSCMD.po +	$(MSGFMT) SUNW_OST_OSCMD.po  	@$(RM) messages.po $(POFILE) SUNW_OST_OSCMD.po  clean strip cstyle lint:	$(SUBDIRS) diff --git a/usr/src/cmd/sgs/messages/Makefile.com b/usr/src/cmd/sgs/messages/Makefile.com index 8a57a7094b..0dd50a2a08 100644 --- a/usr/src/cmd/sgs/messages/Makefile.com +++ b/usr/src/cmd/sgs/messages/Makefile.com @@ -33,8 +33,6 @@ TEXT_DOMAIN=	SUNW_OST_SGS  POFILE=		sgs.po -MSGFMT=		msgfmt -  # The following message files are generated as part of each utilites build via  # sgsmsg(1l).  By default each file is formatted as a portable object file  # (.po) - see msgfmt(1).  If the sgsmsg -C option has been employed, each file | 
