pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/ocaml ocaml: Don't quote LDFLAGS.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c91da9916cd1
branches:  trunk
changeset: 444228:c91da9916cd1
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Mon Jan 04 07:58:55 2021 +0000

description:
ocaml: Don't quote LDFLAGS.

Breaks the build when it contains multiple arguments.

diffstat:

 lang/ocaml/distinfo                              |  4 ++--
 lang/ocaml/patches/patch-otherlibs_unix_Makefile |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 9bf2a105a6ab -r c91da9916cd1 lang/ocaml/distinfo
--- a/lang/ocaml/distinfo       Sun Jan 03 22:47:23 2021 +0000
+++ b/lang/ocaml/distinfo       Mon Jan 04 07:58:55 2021 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.139 2020/12/10 21:37:07 wiz Exp $
+$NetBSD: distinfo,v 1.140 2021/01/04 07:58:55 jperkin Exp $
 
 SHA1 (ocaml-4.11.1.tar.gz) = a3f3d74a43a3d0054f0d0162522499f7d8958560
 RMD160 (ocaml-4.11.1.tar.gz) = 6bdd83aeab8a074cfeffa475fe2db72cbca2d6cf
@@ -16,7 +16,7 @@
 SHA1 (patch-otherlibs_Makefile.otherlibs.common) = 05f14ad2635bfd2ded98ef38ac6e7578b5cfc08e
 SHA1 (patch-otherlibs_systhreads_Makefile) = ff2cf90527bda37474097bb576bccbf7329c4f1d
 SHA1 (patch-otherlibs_systhreads_st__stubs.c) = 3c0aa73f0e128646c01ed3855ee9c5645d5fa3f1
-SHA1 (patch-otherlibs_unix_Makefile) = ebcd541dc3b425c96b00f457c4779bd35976c3f4
+SHA1 (patch-otherlibs_unix_Makefile) = 68bae7e3630fdfab73b562183c9c9bfa0f59a7ff
 SHA1 (patch-runtime_Makefile) = 6c70b68791e4c074179aa27dfafb398646b59dcb
 SHA1 (patch-runtime_amd64.S) = d4c33cb14c107ed03bf6a3704bbfe7c2799a048e
 SHA1 (patch-testsuite_tests_lib-systhreads_testyield.ml) = 0f6d35e030de168c6f4aeb126055065ed47878aa
diff -r 9bf2a105a6ab -r c91da9916cd1 lang/ocaml/patches/patch-otherlibs_unix_Makefile
--- a/lang/ocaml/patches/patch-otherlibs_unix_Makefile  Sun Jan 03 22:47:23 2021 +0000
+++ b/lang/ocaml/patches/patch-otherlibs_unix_Makefile  Mon Jan 04 07:58:55 2021 +0000
@@ -1,4 +1,4 @@
-$NetBSD: patch-otherlibs_unix_Makefile,v 1.1 2020/12/10 21:37:07 wiz Exp $
+$NetBSD: patch-otherlibs_unix_Makefile,v 1.2 2021/01/04 07:58:55 jperkin Exp $
 
 Honor LDFLAGS to fix RELRO build.
 
@@ -9,7 +9,7 @@
  
  # dllunix.so particularly requires libm for modf symbols
 -LDOPTS=$(NATIVECCLIBS)
-+LDOPTS=$(NATIVECCLIBS) "$(LDFLAGS)"
++LDOPTS=$(NATIVECCLIBS) $(LDFLAGS)
  
  COBJS=accept.o access.o addrofstr.o alarm.o bind.o channels.o chdir.o \
    chmod.o chown.o chroot.o close.o fsync.o closedir.o connect.o cst2constr.o \



Home | Main Index | Thread Index | Old Index