git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
More correct way to use printf
[stg.git]
/
projects
/
sgconf_xml
/
Makefile
diff --git
a/projects/sgconf_xml/Makefile
b/projects/sgconf_xml/Makefile
index 02571697c0f40d0ada07613dcfeace9ce10e98e7..aefe7c12e1cd8db58b7d3156b4a82983ec31ed3f 100644
(file)
--- a/
projects/sgconf_xml/Makefile
+++ b/
projects/sgconf_xml/Makefile
@@
-88,5
+88,5
@@
deps: $(SRCS) ../../Makefile.conf
@>deps ;\
for file in $(SRCS); do\
echo "`$(CC) $(CXXFLAGS) -MM $$file` Makefile" >> deps ;\
- printf '
\t$$(CC) -c $$< $(CXXFLAGS)\n
' >> deps ;\
+ printf '
%b\n' '\t$$(CC) -c $$< $(CXXFLAGS)
' >> deps ;\
done