summaryrefslogtreecommitdiffstats
path: root/cmd/arcstat/Makefile.am
blob: 462e9a6197a8106b70c01569d5718989aa1aa41a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
dist_bin_SCRIPTS = arcstat

#
# The arcstat script is compatibile with both Python 2.6 and 3.4.
# As such the python 3 shebang can be replaced at install time when
# targeting a python 2 system.  This allows us to maintain a single
# version of the source.
#
if USING_PYTHON_2
install-exec-hook:
	sed --in-place 's|^#!/usr/bin/python3|#!/usr/bin/python2|' \
	    $(DESTDIR)$(bindir)/arcstat
endif