46f1df319a
- Remove CONFLICTS. All of the localized versions can coexist now. - Update the localized versions to 7.0.5 if possible. - Add support for print/acroreadwrapper. Discussed with: netchild and mezz PR: ports/90319
8 lines
112 B
Bash
8 lines
112 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
#
|
|
# remove harmless files only
|
|
#
|
|
case $2 in
|
|
*/AcroWriteTest|*/*.tmp) /bin/rm "$@" ;;
|
|
esac
|