diff options
author | Jeff Trawick <trawick@apache.org> | 2001-06-27 19:11:52 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-06-27 19:11:52 +0200 |
commit | bc3508337cc4548ebb1090551f03f5444b4051e5 (patch) | |
tree | 1eb4cb647aa72f2ac2794b610e577ce73c7f9711 /server/Makefile.in | |
parent | Win32/OS2 require APR_STATUS_IS_EFOO() tests, not == EFOO, since our (diff) | |
download | apache2-bc3508337cc4548ebb1090551f03f5444b4051e5.tar.xz apache2-bc3508337cc4548ebb1090551f03f5444b4051e5.zip |
hide the generation of the httpd.exp header from the build messages
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89431 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/Makefile.in')
-rw-r--r-- | server/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/Makefile.in b/server/Makefile.in index ecad709fac..2980d5af88 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -73,8 +73,8 @@ ApacheCoreOS2.def: exports.c export_vars.h $(top_srcdir)/os/$(OS_DIR)/core_heade # Rule to make exp file for AIX DSOs httpd.exp: exports.c export_vars.h - echo "#! ." > $@ - echo "* This file was AUTOGENERATED at build time." >> $@ - echo "* Please do not edit by hand." >> $@ + @echo "#! ." > $@ + @echo "* This file was AUTOGENERATED at build time." >> $@ + @echo "* Please do not edit by hand." >> $@ $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) exports.c | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$$/\1/' >> $@ $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) export_vars.h | sed -e 's/^\#[^!]*//' | sed -e '/^$$/d' >> $@ |