diff options
author | Jason W. Bacon <jwb@FreeBSD.org> | 2020-03-15 09:34:00 +0800 |
---|---|---|
committer | Jason W. Bacon <jwb@FreeBSD.org> | 2020-03-15 09:34:00 +0800 |
commit | c0c03b510594d6fcaeabfafba6b02dab78beebe1 (patch) | |
tree | 8fe32566ee6cc9214097ac6c600d627cf4f035cf | |
parent | fc39db840664eec97fb5056b410d8dd8e1cc267c (diff) | |
download | freebsd-ports-gnome-c0c03b510594d6fcaeabfafba6b02dab78beebe1.tar.gz freebsd-ports-gnome-c0c03b510594d6fcaeabfafba6b02dab78beebe1.tar.zst freebsd-ports-gnome-c0c03b510594d6fcaeabfafba6b02dab78beebe1.zip |
sysutils/slurm-wlm: Patch build system for clang/lld 10
PR: ports/244508
Submitted by: dim
-rw-r--r-- | sysutils/slurm-wlm/Makefile | 2 | ||||
-rw-r--r-- | sysutils/slurm-wlm/files/patch-src_api_Makefile.in | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sysutils/slurm-wlm/Makefile b/sysutils/slurm-wlm/Makefile index a4ecf4f8f6f8..bc5ff2edcd49 100644 --- a/sysutils/slurm-wlm/Makefile +++ b/sysutils/slurm-wlm/Makefile @@ -2,6 +2,7 @@ PORTNAME= slurm DISTVERSION= 19.05.5 +PORTREVISION= 1 CATEGORIES= sysutils python MASTER_SITES= https://download.schedmd.com/slurm/ PKGNAMESUFFIX= -wlm @@ -106,6 +107,7 @@ pre-configure: ${WRKSRC}/doc/man/man5/slurm.conf.5 @${REINPLACE_CMD} -e 's|"/proc|"/compat/linux/proc|g' \ + -e 's|(/proc)|(/compat/linux/proc)|g' \ ${WRKSRC}/src/slurmd/slurmstepd/req.c \ ${WRKSRC}/src/slurmd/slurmstepd/pdebug.c \ ${WRKSRC}/src/slurmd/common/xcpuinfo.c \ diff --git a/sysutils/slurm-wlm/files/patch-src_api_Makefile.in b/sysutils/slurm-wlm/files/patch-src_api_Makefile.in new file mode 100644 index 000000000000..5757d1f40e63 --- /dev/null +++ b/sysutils/slurm-wlm/files/patch-src_api_Makefile.in @@ -0,0 +1,10 @@ +--- src/api/Makefile.in.orig 2020-02-29 23:53:10 UTC ++++ src/api/Makefile.in +@@ -1300,7 +1300,6 @@ $(VERSION_SCRIPT) : + + $(FULL_VERSION_SCRIPT) : + (echo "{ global: *;"; \ +- echo " local: *;"; \ + echo "};") > $(FULL_VERSION_SCRIPT) + + # Tell versions [3.59,3.63) of GNU make to not export all variables. |