diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2016-01-08 21:01:30 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2016-01-08 21:01:30 -0500 |
commit | 5ebfa5ec899c6a0827e4f60c06cdadeb2e2c2dd9 (patch) | |
tree | 21e243545858d6de366ea0a0b6cf6134b86576a9 | |
parent | Fix the "show" action for SAPIs other than phpdbg. (diff) | |
download | eselect-php-5ebfa5ec899c6a0827e4f60c06cdadeb2e2c2dd9.tar.gz eselect-php-5ebfa5ec899c6a0827e4f60c06cdadeb2e2c2dd9.tar.bz2 eselect-php-5ebfa5ec899c6a0827e4f60c06cdadeb2e2c2dd9.zip |
Rename "phpdbg" to "dbg" for consistency and to fix its show action.
-rw-r--r-- | src/php.eselect.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/php.eselect.in b/src/php.eselect.in index d9c44f7..efd52c2 100644 --- a/src/php.eselect.in +++ b/src/php.eselect.in @@ -6,7 +6,7 @@ inherit config multilib DESCRIPTION="Manage php installations" MAINTAINER="php-bugs@gentoo.org" -MODULES="cli apache2 fpm cgi phpdbg" +MODULES="cli apache2 fpm cgi dbg" # # Output a list of link names (not full paths) belonging to the given @@ -428,7 +428,7 @@ list_fpm() { list_sapi fpm } -list_phpdbg() { +list_dbg() { list_sapi dbg } @@ -498,7 +498,7 @@ set_cgi() { set_sapi cgi "${1}" } -set_phpdbg() { +set_dbg() { set_sapi dbg "${1}" } |