mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
28eacf3dc2
the user to define NO_X11 if it is not. The auto-detection scheme caused problems for Satoshi's port building system.
8 lines
67 B
Bash
8 lines
67 B
Bash
#! /bin/sh
|
|
|
|
for i; do
|
|
if [ -f $i ]; then
|
|
strip $i
|
|
fi
|
|
done
|