From f01b52c44cbab9205a4fd4c2bcac5ba2d12ef460 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Fri, 13 Sep 2013 07:15:34 +0100 Subject: [PATCH] Tweak 'make beautify-file' unix2dos and dos2unix were renamed to todos and fromdos - they aren't really needed (on Linux anyway), so removed. --- Source/Makefile.am | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Makefile.am b/Source/Makefile.am index 984b9c268..40fa4d9f2 100644 --- a/Source/Makefile.am +++ b/Source/Makefile.am @@ -140,8 +140,6 @@ beautify-file: test -n "$(INDENTFILE)" || (echo INDENTFILE not defined && exit 1;) test -e $(INDENTFILE) || (echo File does not exist: $(INDENTFILE) && exit 1;) cp $(INDENTFILE) $(INDENTBAKSDIR)/$(INDENTFILE); - unix2dos $(INDENTFILE) - dos2unix $(INDENTFILE) indent -kr --honour-newlines --line-length160 --indent-level2 --braces-on-func-def-line --leave-optional-blank-lines $(SWIGTYPEDEFS) $(INDENTFILE) -o $(INDENTFILE).tmp; cat $(INDENTFILE).tmp | sed -e 's/const const /const /' > $(INDENTFILE); rm $(INDENTFILE).tmp;