1#!/bin/sh
2#
3# Variant links cannot be created in the actual target, because Strip/CodeSign/etc are
4# after all other phases. Running it in the aggregate target guarantees that the variants
5# are really linked to the actual stripped/signed binary.
6#
7
8set -ex
9
10ln ${DSTROOT}/usr/bin/pkill ${DSTROOT}/usr/bin/pgrep
11ln ${DSTROOT}/usr/share/man/man1/pkill.1 ${DSTROOT}/usr/share/man/man1/pgrep.1
12