summaryrefslogtreecommitdiffstats
path: root/scripts/dummy-strip.sh
blob: 21d2eb6eeea6e00748cd12ed51074ea42f1069ef (plain)
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh
# dummy-strip.sh for PTXdist - Copyright (C) 2009 by Wolfram Sang
#
# This scripts gets installed into the cross-environment as a 'dummy'-strip
# program. As programs like 'install -s' just call 'strip', this prevents
# leaking in of the host-version of strip. Also, it does intentionally
# nothing as we want to strip at a later stage.
#
echo "ptxdist: Discarding 'strip $*'"
exit 0