diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-04 20:27:15 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-04 20:27:15 +0000 |
commit | fde265c4fa7d38aec0b0fdcee006bb9adee4f8af (patch) | |
tree | 42d88afadcec14cabff52e528d25ccff19e0fd28 | |
parent | 61e31de98b97f556cfb2a0cafa172bde673e7859 (diff) | |
download | vdr-plugin-live-fde265c4fa7d38aec0b0fdcee006bb9adee4f8af.tar.gz vdr-plugin-live-fde265c4fa7d38aec0b0fdcee006bb9adee4f8af.tar.bz2 |
- added content type directive to precompiler calls
-rw-r--r-- | css/Makefile | 2 | ||||
-rw-r--r-- | images/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/css/Makefile b/css/Makefile index 6ee6807..d201ab9 100644 --- a/css/Makefile +++ b/css/Makefile @@ -28,7 +28,7 @@ all: libcss.a $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< %.cpp: %.css - $(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CSS) -b $< + $(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CSS) -b -m "text/css" $< ### Targets: diff --git a/images/Makefile b/images/Makefile index 50853b9..d790b52 100644 --- a/images/Makefile +++ b/images/Makefile @@ -28,7 +28,7 @@ all: libimages.a $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< %.cpp: %.png - $(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CSS) -b $< + $(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CSS) -b -m "image/png" $< ### Targets: |