blob: a32700db6edf9e9646fb0290e3d3222d41a9a1ee (
plain)
1
2
3
4
5
6
7
|
#! /bin/sh
[ -z "$HTML_DESTDIR" ] && HTML_DESTDIR=/var/www/html/radsecproxy
if [ -f /usr/local/src/radsecproxy-web/Makefile ]; then
make -C /usr/local/src/radsecproxy-web DESTDIR=$HTML_DESTDIR
fi
|