Use numeric user-ids to make the ls output more predictable (fixes a problem where a user would have a space in their name).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16405 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonas Häggqvist 2008-02-24 13:31:59 +00:00
parent 313a6d6c2b
commit 497d17de3b

View file

@ -37,4 +37,4 @@ $(OBJDIR)/%.lng : %.lang $(FEATS)
$(HEADER): $(OUTP)
$(call PRINTS,Make $(HEADER))
$(SILENT)echo "#define MAX_LANGUAGE_SIZE `ls -l $(OBJDIR)/* | awk '{print $$5}' | sort -n | tail -1`" > $(HEADER)
$(SILENT)echo "#define MAX_LANGUAGE_SIZE `ls -n $(OBJDIR)/* | awk '{print $$5}' | sort -n | tail -1`" > $(HEADER)