mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-11 23:59:13 +02:00
Closes: https://bugs.gentoo.org/722094 Signed-off-by: Andrei Horodniceanu <a.horodniceanu@proton.me> Part-of: https://github.com/gentoo/gentoo/pull/42075 Closes: https://github.com/gentoo/gentoo/pull/42075 Signed-off-by: Sam James <sam@gentoo.org>
16 lines
565 B
Diff
16 lines
565 B
Diff
# https://github.com/abraunegg/onedrive/pull/3272
|
|
Makefile.in: Pass libraries after source files in compiler invocation
|
|
|
|
Signed-off-by: Andrei Horodniceanu <a.horodniceanu@proton.me>
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -100,7 +100,7 @@ onedrive: $(SOURCES)
|
|
else \
|
|
echo $(version) > version ; \
|
|
fi
|
|
- $(DC) -J. $(NOTIF_VERSIONS) $(DCFLAGS) $(addprefix $(LINKER_DCFLAG),$(all_libs)) $^ $(OUTPUT_DCFLAG)$@
|
|
+ $(DC) -J. $(NOTIF_VERSIONS) $(DCFLAGS) $^ $(addprefix $(LINKER_DCFLAG),$(all_libs)) $(OUTPUT_DCFLAG)$@
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)$(bindir)
|
|
|