diff options
author | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-05-13 17:45:00 +0300 |
---|---|---|
committer | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-05-13 17:45:00 +0300 |
commit | 58ca240490cd369674c9cd3edf9fd6bb698b5285 (patch) | |
tree | f698507e91e80da8761705121fc48d322085a7e2 /Makefile | |
parent | 5b38455540163e5f738dd649bec87c9fca75a420 (diff) | |
download | vdr-plugin-epgfixer-58ca240490cd369674c9cd3edf9fd6bb698b5285.tar.gz vdr-plugin-epgfixer-58ca240490cd369674c9cd3edf9fd6bb698b5285.tar.bz2 |
Fix linking when --as-needed is used.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -116,7 +116,7 @@ i18n: $(I18Nmsgs) $(I18Npot) ### Targets: libvdr-$(PLUGIN).so: $(OBJS) - $(CXX) $(CXXFLAGS) $(LDFLAGS) $(LIBS) -shared $(OBJS) -o $@ + $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@ $(LIBS) @cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION) dist: $(I18Npo) clean |