You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2018/10/12 10:55:13 UTC

svn commit: r1843643 - /tomcat/native/trunk/native/Makefile.in

Author: rjung
Date: Fri Oct 12 10:55:13 2018
New Revision: 1843643

URL: http://svn.apache.org/viewvc?rev=1843643&view=rev
Log:
Reuse variables already substituted in this
Makefile instead of substituting it in multiple
places.

Modified:
    tomcat/native/trunk/native/Makefile.in

Modified: tomcat/native/trunk/native/Makefile.in
URL: http://svn.apache.org/viewvc/tomcat/native/trunk/native/Makefile.in?rev=1843643&r1=1843642&r2=1843643&view=diff
==============================================================================
--- tomcat/native/trunk/native/Makefile.in (original)
+++ tomcat/native/trunk/native/Makefile.in Fri Oct 12 10:55:13 2018
@@ -86,7 +86,7 @@ install: $(TARGET_LIB)
 	$(LIBTOOL) --mode=install $(INSTALL) -m 755 $(TARGET_LIB) $(DESTDIR)$(libdir)
 
 $(TARGET_LIB): $(OBJECTS)
-	$(LINK) @lib_target@ @TCNATIVE_LDFLAGS@ @TCNATIVE_LIBS@
+	$(LINK) @lib_target@ $(TCNATIVE_LDFLAGS) $(TCNATIVE_LIBS)
 
 check: $(TARGET_LIB)
 	(cd test && $(MAKE) check)



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org