1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/lang/modula-3/scripts/maybe-strip
John Polstra 28eacf3dc2 Instead of trying to auto-detect whether X11 is installed, require
the user to define NO_X11 if it is not.  The auto-detection scheme
caused problems for Satoshi's port building system.
1999-01-28 05:39:19 +00:00

8 lines
67 B
Bash

#! /bin/sh
for i; do
if [ -f $i ]; then
strip $i
fi
done