mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-18 08:02:48 +00:00
7f05c36ddb
- use USE_JAVA. Submitted by: des (USE_JAVA)
29 lines
410 B
Bash
29 lines
410 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
linkfile="${PKG_PREFIX}/etc/shujit-links"
|
|
if [ -f "${linkfile}" ]
|
|
then
|
|
cat "${linkfile}" | while read link
|
|
do
|
|
rm -f "${link}"
|
|
done
|
|
rm -f "${linkfile}"
|
|
fi
|
|
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
linkfile="${PKG_PREFIX}/etc/shujit-links"
|
|
if [ -f "${linkfile}" ]
|
|
then
|
|
cat "${linkfile}" | while read link
|
|
do
|
|
rm -f "${link}"
|
|
done
|
|
rm -f "${linkfile}"
|
|
fi
|