You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2005/12/23 09:42:09 UTC

svn commit: r358770 - /tomcat/connectors/trunk/jk/native/apache-1.3/Makefile.in

Author: mturk
Date: Fri Dec 23 00:42:05 2005
New Revision: 358770

URL: http://svn.apache.org/viewcvs?rev=358770&view=rev
Log:
Replace $< with real source name. This fixes
building problems on BSD make systems like Solaris, etc...

Modified:
    tomcat/connectors/trunk/jk/native/apache-1.3/Makefile.in

Modified: tomcat/connectors/trunk/jk/native/apache-1.3/Makefile.in
URL: http://svn.apache.org/viewcvs/tomcat/connectors/trunk/jk/native/apache-1.3/Makefile.in?rev=358770&r1=358769&r2=358770&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/native/apache-1.3/Makefile.in (original)
+++ tomcat/connectors/trunk/jk/native/apache-1.3/Makefile.in Fri Dec 23 00:42:05 2005
@@ -85,13 +85,13 @@
 	 ${MOD_LINK} -o $@ $^
 
 mod_jk.so: mod_jk.la
-	$(LIBTOOL) --mode=install cp $< `pwd`/$@
+	$(LIBTOOL) --mode=install cp mod_jk.la `pwd`/$@
 
 #
 # Common part.
 #
 mod_jk.lo: mod_jk.c
-	${SH_COMPILE} -c $< -o $@
+	${SH_COMPILE} -c mod_jk.c -o $@
 
 .c.lo:
 	${SH_COMPILE} -c $< -o $@



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