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/ntp/ntpd | |
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/ntp/ntpd')
-rw-r--r-- | contrib/ntp/ntpd/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ntp/ntpd/Makefile.in b/contrib/ntp/ntpd/Makefile.in index f92b31f..6ccb13b 100644 --- a/contrib/ntp/ntpd/Makefile.in +++ b/contrib/ntp/ntpd/Makefile.in @@ -58,7 +58,7 @@ CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) -ARFLAGS = cru +ARFLAGS = @ARFLAGS@ libntpd_a_AR = $(AR) $(ARFLAGS) libntpd_a_LIBADD = am_libntpd_a_OBJECTS = ntp_control$U.$(OBJEXT) ntp_crypto$U.$(OBJEXT) \ |