mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
13 lines
249 B
Plaintext
Executable File
13 lines
249 B
Plaintext
Executable File
#!@SHELL@
|
|
|
|
WRAPPED_OPTS=""
|
|
for opt in "$@"; do
|
|
case "$opt" in
|
|
# Fix for -R not working w/apxs
|
|
-R*) WRAPPED_OPTS="$WRAPPED_OPTS -Wl,$opt" ;;
|
|
*) WRAPPED_OPTS="$WRAPPED_OPTS $opt" ;;
|
|
esac
|
|
done
|
|
|
|
exec @APXS@ $WRAPPED_OPTS
|