[pacman-dev] [PATCH] ./configure --help corrections
From edbc50650ac22764842b154da891fdc89c05532e Mon Sep 17 00:00:00 2001 From: Roman Kyrylych <roman@archlinux.org> Date: Sun, 3 Jun 2007 20:10:44 +0300 Subject: [PATCH] ./configure --help corrections Signed-off-by: Roman Kyrylych <roman@archlinux.org> corrected descriptions of configure options --- configure.ac | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index 86df997..74d7911 100644 --- a/configure.ac +++ b/configure.ac @@ -30,37 +30,37 @@ AC_DEFINE_UNQUOTED([LIB_VERSION], ["$LIB_VERSION"], [libalpm version number]) # Help line for root directory AC_ARG_WITH(root-dir, - AC_HELP_STRING([--with-root-dir=path], [Set the location of pacman's root operating directory]), + AC_HELP_STRING([--with-root-dir=path], [set the location of pacman's root operating directory]), [ROOTDIR=$withval], [ROOTDIR=/]) # Help line for package extension AC_ARG_WITH(pkg-ext, - AC_HELP_STRING([--with-pkg-ext=ext], [Set the file extension used by packages]), + AC_HELP_STRING([--with-pkg-ext=ext], [set the file extension used by packages]), [PKGEXT=$withval], [PKGEXT=.pkg.tar.gz]) # Help line for source package directory AC_ARG_WITH(src-ext, - AC_HELP_STRING([--with-src-ext=ext], [Set the file extension used by source packages]), + AC_HELP_STRING([--with-src-ext=ext], [set the file extension used by source packages]), [SRCEXT=$withval], [SRCEXT=.src.tar.gz]) # Help line for database extension AC_ARG_WITH(db-ext, - AC_HELP_STRING([--with-db-ext=ext], [Set the file extension used by the database]), + AC_HELP_STRING([--with-db-ext=ext], [set the file extension used by the database]), [DBEXT=$withval], [DBEXT=.db.tar.gz]) # Help line for doxygen AC_ARG_ENABLE(doxygen, - AC_HELP_STRING([--disable-doxygen], [Build API docs via Doxygen]), + AC_HELP_STRING([--disable-doxygen], [do not build API docs via Doxygen]), [wantdoxygen=$enableval], [wantdoxygen=yes]) # Help line for debug AC_ARG_ENABLE(debug, - AC_HELP_STRING([--enable-debug], [Enable debugging support]), + AC_HELP_STRING([--enable-debug], [enable debugging support]), [debug=$enableval], [debug=no]) # Help line for abs AC_ARG_ENABLE(abs, - AC_HELP_STRING([--disable-abs], [Include Arch Linux Build System script]), + AC_HELP_STRING([--disable-abs], [do not include Arch Linux Build System script]), [includeabs=$enableval], [includeabs=yes]) # Checks for programs. -- 1.5.2 -- Roman Kyrylych (Роман Кирилич)
2007/6/3, Roman Kyrylych <roman.kyrylych@gmail.com>:
From edbc50650ac22764842b154da891fdc89c05532e Mon Sep 17 00:00:00 2001 From: Roman Kyrylych <roman@archlinux.org> Date: Sun, 3 Jun 2007 20:10:44 +0300 Subject: [PATCH] ./configure --help corrections Signed-off-by: Roman Kyrylych <roman@archlinux.org>
corrected descriptions of configure options --- configure.ac | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-)
This is my first patch in git format. Is this header OK? What lines are not needed? -- Roman Kyrylych (Роман Кирилич)
participants (1)
-
Roman Kyrylych