You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2007/12/18 05:48:09 UTC

svn commit: r605084 - /httpd/mod_ftp/trunk/Makefile.apxs

Author: wrowe
Date: Mon Dec 17 20:48:09 2007
New Revision: 605084

URL: http://svn.apache.org/viewvc?rev=605084&view=rev
Log:
Whoops; that's ".so" to you.

I choose not to insert the period by default, so that any more unusual
naming conventions could be accomodated.  (Also, it turns out that -v
args for awk aren't portably available in the BEGIN{} block, so it wasn't
wise to derive a default there.)

Modified:
    httpd/mod_ftp/trunk/Makefile.apxs

Modified: httpd/mod_ftp/trunk/Makefile.apxs
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/Makefile.apxs?rev=605084&r1=605083&r2=605084&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/Makefile.apxs (original)
+++ httpd/mod_ftp/trunk/Makefile.apxs Mon Dec 17 20:48:09 2007
@@ -56,7 +56,7 @@
 	    done ; \
 	done
 	@awk -f $(ftp_srcdir)/build/addloadexample.awk \
-		-v MODULE=ftp -v DSO=so -v LIBPATH=$(rel_libexecdir) \
+		-v MODULE=ftp -v DSO=.so -v LIBPATH=$(rel_libexecdir) \
 		-v EXAMPLECONF=$(rel_sysconfdir)/extra/ftpd.conf \
 		$(httpd_conffile) > $(httpd_conffile).new && \
 	  ( mv $(httpd_conffile) $(httpd_conffile).bak && \