Skip to content

Commit 5f113de

Browse files
committed
Fixed 'make distrib'
1 parent ed8b000 commit 5f113de

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

Makefile.am

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ AUTOMAKE_OPTIONS = foreign
22

33
# Scripts
44
SAAPY = $(srcdir)/libexec/slurm_auto_array.py
5+
TASK = libexec/task.sh
6+
WORK_UNIT = libexec/work_unit.py
57
bin_SCRIPTS = $(srcdir)/bin/slurm-auto-array
6-
libexec_SCRIPTS = $(SAAPY) $(srcdir)/libexec/task.sh $(srcdir)/libexec/work_unit.py
8+
# libexec_SCRIPTS = $(SAAPY) $(srcdir)/libexec/task.sh $(srcdir)/libexec/work_unit.py
9+
libexec_SCRIPTS = $(SAAPY) $(TASK) $(WORK_UNIT)
710
$(SAAPY): $(SAAPY).in
811
sed "s/SAA_VERSION_STRING/$(VERSION)/g" $< > $@
912

@@ -18,4 +21,4 @@ TESTS = test/test.bats
1821

1922
CLEANFILES = $(MAN) $(SAAPY)
2023

21-
EXTRA_DIST = $(bin_SCRIPTS) $(libexec_SCRIPTS) $(MAN) $(MAN).md $(srcdir)/README.md $(srcdir)/LICENSE
24+
EXTRA_DIST = $(bin_SCRIPTS) $(SAAPY).in $(TASK) $(WORK_UNIT) $(TESTS) $(MAN) $(MAN).md $(srcdir)/README.md $(srcdir)/LICENSE

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Although we've found `slurm-auto-array` to work well for many users on our syste
1212

1313
## Installation
1414

15-
`slurm-auto-array` requires [Slurm](https://slurm.schedmd.com/overview.html), [GNU Parallel](https://www.gnu.org/software/parallel/), and Python (3.6 or higher) at runtime. Pandoc is required to install from this repository (but *not* to install from a [release](https://github.com/BYUHPC/slurm-auto-array/releases)), and `bats` and Slurm are required to run `make check`.
15+
`slurm-auto-array` requires [Slurm](https://slurm.schedmd.com/overview.html), [GNU Parallel](https://www.gnu.org/software/parallel/), and Python (3.6 or higher) at runtime. Pandoc is required to install from this repository (but *not* to install from a [release](https://github.com/BYUHPC/slurm-auto-array/releases)), and `bats` and all the runtime dependencies are required to run `make check`.
1616

1717
Given that you want to install in `/my/software/slurm-auto-array`:
1818

0 commit comments

Comments
 (0)