diff options
author | Daniel Meyerholt <dxm523@googlemail.com> | 2011-02-06 16:07:40 +0100 |
---|---|---|
committer | Daniel Meyerholt <dxm523@googlemail.com> | 2011-02-06 16:07:40 +0100 |
commit | daa5a0e31767213131cf742cce4f00017106c4f6 (patch) | |
tree | 494cf58057c450013e834567c00cece25fb982af | |
parent | a0674cc59c6aaad845ed0a48768fb56b90c41d52 (diff) | |
download | vdr-plugin-vdrrip-daa5a0e31767213131cf742cce4f00017106c4f6.tar.gz vdr-plugin-vdrrip-daa5a0e31767213131cf742cce4f00017106c4f6.tar.bz2 |
Add -fPIC to Makefile to fix potential FTBFS (stolen from e-tobi .deb)
-rwxr-xr-x | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri ### The C++ compiler and options: CXX ?= g++ -CXXFLAGS ?= -O2 -Wall -Woverloaded-virtual +CXXFLAGS ?= -fPIC -O2 -Wall -Woverloaded-virtual ### The directory environment: |