2006-07-25 19:00:04 +01:00
|
|
|
if [ $# -ne 0 ]
|
|
|
|
then
|
|
|
|
print_failure "Too many arguments. None required for this module."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2006-07-25 19:59:37 +01:00
|
|
|
do_parameter_subst
|
2006-12-08 15:51:18 +00:00
|
|
|
add_config_option "CC" "${COPT_CC_DEFAULT}"
|
|
|
|
add_config_option "CFLAGS" "${COPT_CFLAGS_DEFAULT}"
|
|
|
|
add_config_option "BINDIR" "${COPT_BINDIR_DEFAULT}"
|
2006-07-25 19:59:37 +01:00
|
|
|
true
|
2006-07-25 19:00:04 +01:00
|
|
|
|
|
|
|
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
|
|
|
|
# vim: expandtab:ts=4:sw=4
|