diff options
author | 2011-02-05 17:46:49 +0000 | |
---|---|---|
committer | 2011-02-05 17:46:49 +0000 | |
commit | 86d41efb2e3b13c66216da5bf17f3476e91d56e9 (patch) | |
tree | 08ee6f3b14542f0b373bd05b9cacaeafefa239f3 /app-office/ical/files | |
parent | x86 stable wrt bug #353448 (diff) | |
download | gentoo-2-86d41efb2e3b13c66216da5bf17f3476e91d56e9.tar.gz gentoo-2-86d41efb2e3b13c66216da5bf17f3476e91d56e9.tar.bz2 gentoo-2-86d41efb2e3b13c66216da5bf17f3476e91d56e9.zip |
Respect LDFLAGS and fix src_test() logic wrt #351021 by Kevin McCarthy.
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'app-office/ical/files')
-rw-r--r-- | app-office/ical/files/ical-3.0-ldflags.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app-office/ical/files/ical-3.0-ldflags.patch b/app-office/ical/files/ical-3.0-ldflags.patch new file mode 100644 index 000000000000..36c1599f8ca7 --- /dev/null +++ b/app-office/ical/files/ical-3.0-ldflags.patch @@ -0,0 +1,23 @@ +Add LDFLAGS to linker calls + +Patch by Kevin McCarthy <signals42@gmail.com> + +--- Makefile.in ++++ Makefile.in +@@ -74,13 +74,13 @@ + all: $(CONFIGURED) ical + + ical: $(LIB3) $(LIB2) $(LIB1) $(OBJS) main.o +- $(CXXLINKER) -o $@ $(OBJS) main.o $(LIBS) ++ $(CXXLINKER) $(LDFLAGS) -o $@ $(OBJS) main.o $(LIBS) + + ical-bundle: $(LIB3) $(LIB2) $(LIB1) $(OBJS) mbundle.o +- $(CXXLINKER) -o $@ $(OBJS) mbundle.o $(BLIBS) ++ $(CXXLINKER) $(LDFLAGS) -o $@ $(OBJS) mbundle.o $(BLIBS) + + ical-tiny: $(LIB3) $(LIB2) $(LIB1) $(OBJS) mbundle.o +- $(CXXLINKER) -o $@ $(OBJS) mbundle.o $(TINY_BLIBS) ++ $(CXXLINKER) $(LDFLAGS) -o $@ $(OBJS) mbundle.o $(TINY_BLIBS) + + $(LIB1): FRC + @echo making in calendar |