2007-01-31 14:03:00 +00:00
|
|
|
if [ $# -ne 0 ]
|
|
|
|
then
|
|
|
|
print_failure "Not expecting arguments."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
do_parameter_subst
|
|
|
|
add_config_option "CC" "${COPT_CC_DEFAULT}"
|
|
|
|
add_config_option "CFLAGS" "${COPT_CFLAGS_DEFAULT}"
|
2007-09-11 23:06:23 +01:00
|
|
|
add_config_option "MODULEDIR" "\${LIBDIR}/@TODO@/"
|
2007-01-31 14:03:00 +00:00
|
|
|
true
|
|
|
|
|
|
|
|
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
|
2007-08-08 13:03:18 +01:00
|
|
|
# vim: syntax=sh:expandtab:ts=4:sw=4
|