[Ferm] [PATCH] Makefile: remove bashism

Faidon Liambotis paravoid at debian.org
Wed Jul 6 22:58:38 CEST 2011


Brace expansion is a bash-specific feature and may not be available in
other shells (such as dash). Remove that from Makefile and leave the
expression expanded.
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index 34b0fa0..7fc712e 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ all: doc/ferm.txt doc/ferm.html doc/ferm.1 doc/import-ferm.1
 
 clean:
 	rm -rf build
-	rm -f doc/ferm.txt doc/ferm.html doc/{import-,}ferm.1 *.tmp
+	rm -f doc/ferm.txt doc/ferm.html doc/ferm.1 doc/import-ferm.1 *.tmp
 
 #
 # documentation
-- 
1.7.2.5



More information about the Ferm mailing list