diff options
author | Oliver Bolte <obo@openoffice.org> | 2005-01-20 14:37:22 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2005-01-20 14:37:22 +0000 |
commit | a7510a417d7240717cc9d3825309f8d977dafbd7 (patch) | |
tree | a76bbb49268d8680f2ca0614368ae95392f59aab | |
parent | 622963d51216246330d1bfdc216a8d841cbb3833 (diff) |
#i10000# max arguments from 10 to 20
-rw-r--r-- | odk/util/odk_rules.pmk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/odk/util/odk_rules.pmk b/odk/util/odk_rules.pmk index 44d380af457d..74cf7aff9519 100644 --- a/odk/util/odk_rules.pmk +++ b/odk/util/odk_rules.pmk @@ -2,9 +2,9 @@ # # $RCSfile: odk_rules.pmk,v $ # -# $Revision: 1.10 $ +# $Revision: 1.11 $ # -# last change: $Author: hr $ $Date: 2004-11-09 13:46:46 $ +# last change: $Author: obo $ $Date: 2005-01-20 15:37:22 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -365,7 +365,7 @@ $(DESTDIRLIB)$/%.lib : $(LIBOUT)$/%.lib $(DIR_CREATE_FLAG) : .IF "$(USE_SHELL)" != "4nt" - +$(TYPE) $(mktmp $(DIR_DIRECTORY_LIST)) | xargs -n 10 $(MKDIRHIER) && echo "dirs created" > $@ && touch $@ + +$(TYPE) $(mktmp $(DIR_DIRECTORY_LIST)) | xargs -n 20 $(MKDIRHIER) && echo "dirs created" > $@ && touch $@ .ELSE +$(TYPE) $(mktmp $(DIR_DIRECTORY_LIST:s/\/\\/)) | xargs -n 10 $(COMSPEC) -c $(PERL) $(SOLARENV)$/bin/mkdir.pl && echo "dirs created" > $@ && touch $@ .ENDIF |