[Rcpp-commits] r2828 - pkg/Rcpp/src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Jan 4 16:56:14 CET 2011


Author: edd
Date: 2011-01-04 16:56:14 +0100 (Tue, 04 Jan 2011)
New Revision: 2828

Modified:
   pkg/Rcpp/src/Makevars
Log:
replace second instance of GNU make variable $^ with a more portable explicit list of depends


Modified: pkg/Rcpp/src/Makevars
===================================================================
--- pkg/Rcpp/src/Makevars	2011-01-04 15:28:32 UTC (rev 2827)
+++ pkg/Rcpp/src/Makevars	2011-01-04 15:56:14 UTC (rev 2828)
@@ -34,7 +34,7 @@
 		@if test -e "/usr/bin/install_name_tool"; then /usr/bin/install_name_tool -id $(R_PACKAGE_DIR)/lib$(R_ARCH)/$(USERLIB) $(USERLIB); fi
 
 $(USERLIBST): 	$(OBJECTS)
-		$(AR) qc $(USERLIBST) $^
+		$(AR) qc $(USERLIBST) $(OBJECTS)
 		@if test -n "$(RANLIB)"; then $(RANLIB) $(USERLIBST); fi
 
 .PHONY: 	all clean userLibrary 



More information about the Rcpp-commits mailing list