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/17 05:01:59 UTC

svn commit: r604767 - /httpd/mod_ftp/trunk/build/Makefile.apxs

Author: wrowe
Date: Sun Dec 16 20:01:58 2007
New Revision: 604767

URL: http://svn.apache.org/viewvc?rev=604767&view=rev
Log:
Quiet part of the detection process

Modified:
    httpd/mod_ftp/trunk/build/Makefile.apxs

Modified: httpd/mod_ftp/trunk/build/Makefile.apxs
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/build/Makefile.apxs?rev=604767&r1=604766&r2=604767&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/build/Makefile.apxs (original)
+++ httpd/mod_ftp/trunk/build/Makefile.apxs Sun Dec 16 20:01:58 2007
@@ -28,13 +28,13 @@
 	$(LINK) conftest_fchmod.lo
 
 conftest_arpa_ftp_h: conftest_arpa_ftp_h.lo
-	echo "success" > $@
+	@echo "success" > $@
 
 conftest_fchmod.c:
-	echo "#include <sys/types.h>" > $@
-	echo "#include <sys/stat.h>" >> $@
-	echo "int main() { return fchmod(2, 0644); }" >> $@
+	@echo "#include <sys/types.h>" > $@
+	@echo "#include <sys/stat.h>" >> $@
+	@echo "int main() { return fchmod(2, 0644); }" >> $@
 
 conftest_arpa_ftp_h.c:
-	echo "#include <arpa/ftp.h>" > $@
+	@echo "#include <arpa/ftp.h>" > $@