From 0af88b7eaea295debd7e17720aa05323c8c487df Mon Sep 17 00:00:00 2001 From: eadler Date: Thu, 6 Dec 2012 01:31:25 +0000 Subject: 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 Reviewed by: imp, toolchain@ Approved by: cperciva MFC after: 2 weeks --- contrib/opie/libmissing/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/opie/libmissing') diff --git a/contrib/opie/libmissing/Makefile.in b/contrib/opie/libmissing/Makefile.in index e4759da..fb3d5b2 100644 --- a/contrib/opie/libmissing/Makefile.in +++ b/contrib/opie/libmissing/Makefile.in @@ -22,7 +22,7 @@ TARGET=libmissing.a all: $(TARGET) $(TARGET): $(OBJS) - ar cr $(TARGET) $(OBJS) + @AR@ @ARFLAGS@ $(TARGET) $(OBJS) @RANLIB@ $(TARGET) clean: -- cgit v1.1