Add 'srpm' --with-config option for creation of spec files.
This commit is contained in:
parent
ea385742db
commit
c1541dfef1
|
@ -191,7 +191,7 @@ AC_DEFUN([SPL_AC_CONFIG], [
|
||||||
SPL_CONFIG=all
|
SPL_CONFIG=all
|
||||||
AC_ARG_WITH([config],
|
AC_ARG_WITH([config],
|
||||||
AS_HELP_STRING([--with-config=CONFIG],
|
AS_HELP_STRING([--with-config=CONFIG],
|
||||||
[Config file 'kernel|user|all']),
|
[Config file 'kernel|user|all|srpm']),
|
||||||
[SPL_CONFIG="$withval"])
|
[SPL_CONFIG="$withval"])
|
||||||
|
|
||||||
AC_MSG_CHECKING([spl config])
|
AC_MSG_CHECKING([spl config])
|
||||||
|
@ -203,10 +203,11 @@ AC_DEFUN([SPL_AC_CONFIG], [
|
||||||
user) SPL_AC_CONFIG_USER ;;
|
user) SPL_AC_CONFIG_USER ;;
|
||||||
all) SPL_AC_CONFIG_KERNEL
|
all) SPL_AC_CONFIG_KERNEL
|
||||||
SPL_AC_CONFIG_USER ;;
|
SPL_AC_CONFIG_USER ;;
|
||||||
|
srpm) ;;
|
||||||
*)
|
*)
|
||||||
AC_MSG_RESULT([Error!])
|
AC_MSG_RESULT([Error!])
|
||||||
AC_MSG_ERROR([Bad value "$SPL_CONFIG" for --with-config,
|
AC_MSG_ERROR([Bad value "$SPL_CONFIG" for --with-config,
|
||||||
user kernel|user|all]) ;;
|
user kernel|user|all|srpm]) ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
AM_CONDITIONAL([CONFIG_USER],
|
AM_CONDITIONAL([CONFIG_USER],
|
||||||
|
|
|
@ -1049,7 +1049,7 @@ Optional Packages:
|
||||||
both]
|
both]
|
||||||
--with-tags[=TAGS]
|
--with-tags[=TAGS]
|
||||||
include additional configurations [automatic]
|
include additional configurations [automatic]
|
||||||
--with-config=CONFIG Config file 'kernel|user|all'
|
--with-config=CONFIG Config file 'kernel|user|all|srpm'
|
||||||
--with-linux=PATH Path to kernel source
|
--with-linux=PATH Path to kernel source
|
||||||
--with-linux-obj=PATH Path to kernel build objects
|
--with-linux-obj=PATH Path to kernel build objects
|
||||||
|
|
||||||
|
@ -25450,13 +25450,14 @@ _ACEOF
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
|
srpm) ;;
|
||||||
*)
|
*)
|
||||||
echo "$as_me:$LINENO: result: Error!" >&5
|
echo "$as_me:$LINENO: result: Error!" >&5
|
||||||
echo "${ECHO_T}Error!" >&6
|
echo "${ECHO_T}Error!" >&6
|
||||||
{ { echo "$as_me:$LINENO: error: Bad value \"$SPL_CONFIG\" for --with-config,
|
{ { echo "$as_me:$LINENO: error: Bad value \"$SPL_CONFIG\" for --with-config,
|
||||||
user kernel|user|all" >&5
|
user kernel|user|all|srpm" >&5
|
||||||
echo "$as_me: error: Bad value \"$SPL_CONFIG\" for --with-config,
|
echo "$as_me: error: Bad value \"$SPL_CONFIG\" for --with-config,
|
||||||
user kernel|user|all" >&2;}
|
user kernel|user|all|srpm" >&2;}
|
||||||
{ (exit 1); exit 1; }; } ;;
|
{ (exit 1); exit 1; }; } ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue