Remove -e and -t from loglevels.h target to make it POSIX compliant (Thanks Mirko)

This commit is contained in:
Michael Stapelberg 2009-12-20 23:43:49 +01:00
parent 1776c12c0b
commit 4b3ff1795c
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ loglevels.h: rm_loglevels
done > loglevels.tmp done > loglevels.tmp
(echo "char *loglevels[] = {"; for file in $$(cat loglevels.tmp); \ (echo "char *loglevels[] = {"; for file in $$(cat loglevels.tmp); \
do \ do \
echo -e "\t\"$$file\", "; \ echo "\"$$file\", "; \
done; \ done; \
echo "};") > include/loglevels.h echo "};") > include/loglevels.h