13 lines
265 B
Plaintext
13 lines
265 B
Plaintext
|
if [ $# -ne 0 ]
|
||
|
then
|
||
|
print_failure "Too many arguments. None required for this module."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
do_parameter_subst
|
||
|
add_config_option "CC" "${COPT_CC_DEFAULT}"
|
||
|
add_config_option "CFLAGS" "${COPT_CFLAGS_DEFAULT}"
|
||
|
true
|
||
|
|
||
|
# vim: syntax=sh:expandtab:ts=4:sw=4
|