diff options
author | Guenter Knauf <fuankg@apache.org> | 2011-03-31 07:21:20 +0200 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2011-03-31 07:21:20 +0200 |
commit | a09ac112153416cc5860bbc5192aa68f4985755e (patch) | |
tree | 27de630f0797680b63518181e4603860046da957 /build/NWGNUmakefile | |
parent | Simplify the interface to ap_reclaim_child_processes() and (diff) | |
download | apache2-a09ac112153416cc5860bbc5192aa68f4985755e.tar.xz apache2-a09ac112153416cc5860bbc5192aa68f4985755e.zip |
Removed dependency on sort command for export list.
Added a shell sort function to the NetWare export script
which is only few ms slower than the external sort command;
this makes the export list now identical on all build platforms.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1087185 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/NWGNUmakefile')
-rw-r--r-- | build/NWGNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/NWGNUmakefile b/build/NWGNUmakefile index fe228b4029..8e588aeae7 100644 --- a/build/NWGNUmakefile +++ b/build/NWGNUmakefile @@ -29,11 +29,11 @@ libs :: chkapr $(NWOS)/chartables.c $(DAV)/main/dav.imp : make_nw_export.awk $(DAV)/main/mod_dav.h @echo $(DL)GEN $@$(DL) - $(AWK) -v EXPPREFIX=AP$(VERSION_MAJMIN) -f $^ | $(SORT) >$@ + $(AWK) -v EXPPREFIX=AP$(VERSION_MAJMIN) -f $^ >$@ $(NWOS)/httpd.imp : make_nw_export.awk nw_export.i @echo $(DL)GEN $@$(DL) - $(AWK) -v EXPPREFIX=AP$(VERSION_MAJMIN) -f $^ | $(SORT) >$@ + $(AWK) -v EXPPREFIX=AP$(VERSION_MAJMIN) -f $^ >$@ nw_export.i : nw_export.inc $(FILES_prebuild_headers) cc.opt @echo $(DL)GEN $@$(DL) |