Skip to content

Commit

Permalink
Fix for latest functionality of the format script
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Mar 18, 2014
1 parent fd576c9 commit e910535
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions share/Makefile
Expand Up @@ -3,13 +3,11 @@
#
# $Id$
#
.PHONY: format

#
# This should only be run by hand, and then sanity checked by hand!
#
format: dictionary*
@for x in dictionary* ; do \
cat $$x | ./format.pl > tmp; \
mv tmp $$x; \
format: $(wildcard dictionary*)
@for x in $(wildcard dictionary*) ; do \
./format.pl $$x; \
done

0 comments on commit e910535

Please sign in to comment.