Sign in
apache
/
subversion
/
refs/heads/issue-405-internal-diff
/
.
/
packages
/
freebsd
/
apr
/
pkg-install
blob: 6ef9e11b1c759e2cf266083bb2f8bbd01f98f7f7 [
file
] [
log
] [
blame
]
#!/bin/sh
# $FreeBSD$
if
[
"$2"
!=
"PRE-INSTALL"
];
then
exit
0
fi
pkg_info
'apache-2*'
>
/
dev
/
null
2
<&
1
if
[
$
?
=
0
];
then
echo
"apr cannot currently be installed alongside apache2. sorry."
exit
1
fi
exit
0