search for: _p2v_options_only

Displaying 2 results from an estimated 2 matches for "_p2v_options_only".

2019 Jul 11
1
[p2v PATCH] Add bash completion scripts
...R A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +_p2v_options_only () +{ + local cur prev words cword split + local shortopts longopts tool="$1" + + _init_completion -s || return + + case "$cur" in + --*) + # --options + longopts="$($tool --long-options)" + COMPREPLY=( $(compgen -W &...
2019 Sep 18
1
[p2v PATCH v2] Use URL to point to GNU licenses
...# # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# along with this program. If not, see <https://www.gnu.org/licenses/>. _p2v_options_only () { diff --git a/configure.ac b/configure.ac index 8838de1..72843bc 100644 --- a/configure.ac +++ b/configure.ac @@ -12,8 +12,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to t...