diff options
author | eadler <eadler@FreeBSD.org> | 2012-12-06 01:31:25 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2012-12-06 01:31:25 +0000 |
commit | 0af88b7eaea295debd7e17720aa05323c8c487df (patch) | |
tree | 0ea47815d0d8b0a032fb3b1984970cc51a946957 /contrib/gperf | |
parent | d63ec4c24b02575838256ea35e13bf20df348995 (diff) | |
download | FreeBSD-src-0af88b7eaea295debd7e17720aa05323c8c487df.zip FreeBSD-src-0af88b7eaea295debd7e17720aa05323c8c487df.tar.gz |
Clean up hardcoded ar(1) flags in the tree to use the global ARFLAGS in
share/mk/sys.mk instead.
This is part of a medium term project to permit deterministic builds of
FreeBSD.
Submitted by: Erik Cederstrand <erik@cederstrand.dk>
Reviewed by: imp, toolchain@
Approved by: cperciva
MFC after: 2 weeks
Diffstat (limited to 'contrib/gperf')
-rw-r--r-- | contrib/gperf/lib/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/gperf/lib/Makefile.in b/contrib/gperf/lib/Makefile.in index 8412d44..26dca93 100644 --- a/contrib/gperf/lib/Makefile.in +++ b/contrib/gperf/lib/Makefile.in @@ -43,8 +43,8 @@ CXXCPP = @CXXCPP@ # Both C and C++ compiler OBJEXT = @OBJEXT@ # Other -AR = ar -AR_FLAGS = rc +AR = @AR@ +ARFLAGS = @ARFLAGS@ RANLIB = @RANLIB@ MV = mv LN = ln @@ -71,7 +71,7 @@ all : $(TARGETLIB) $(TARGETLIB): $(OBJECTS) $(RM) $@ - $(AR) $(AR_FLAGS) $@ $(OBJECTS) + $(AR) $(ARFLAGS) $@ $(OBJECTS) $(RANLIB) $@ # Don't use implicit rules, since AIX "make" and OSF/1 "make" don't always |