summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFrançois Revel <mmu_man@netsurf-browser.org>2011-03-21 22:07:10 +0000
committerFrançois Revel <mmu_man@netsurf-browser.org>2011-03-21 22:07:10 +0000
commitea9d99fc8b231c22d06168135e181d61f4eb2f06 (patch)
tree76356af0fa806d5c552e171a812069be8d7843d9 /src
parentb300ddf3f867664d932e1bb56c2d4afc96b87967 (diff)
downloadlibsvgtiny-ea9d99fc8b231c22d06168135e181d61f4eb2f06.tar.gz
libsvgtiny-ea9d99fc8b231c22d06168135e181d61f4eb2f06.tar.bz2
sed in BeOS still doesn't handle -i, so use a temporary file since RiscOS doesn't know pipes.
svn path=/trunk/libsvgtiny/; revision=12121
Diffstat (limited to 'src')
-rw-r--r--src/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index a52041a..43dbc3f 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -5,8 +5,9 @@ SOURCES := $(SOURCES) $(BUILDDIR)/src_colors.c
$(BUILDDIR)/src_colors.c: src/colors.gperf
$(VQ)$(ECHO) " GPERF: $<"
- $(Q)gperf --output-file=$@ $<
+ $(Q)gperf --output-file=$@.tmp $<
# Hack for GCC 4.2 compatibility (gperf 3.0.4 solves this properly)
- $(Q)$(SED) -i -e 's/#ifdef __GNUC_STDC_INLINE__/#if defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/' $@
+ $(Q)$(SED) -e 's/#ifdef __GNUC_STDC_INLINE__/#if defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/' $@.tmp >$@
+ $(Q)$(RM) $@.tmp
include build/makefiles/Makefile.subdir