[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Quilt-dev] [PATCH] configure: add compat symlinks for cp and md5sum
From: |
Kent R. Spillner |
Subject: |
Re: [Quilt-dev] [PATCH] configure: add compat symlinks for cp and md5sum |
Date: |
Sun, 19 Jan 2014 15:38:09 -0600 |
User-agent: |
Mutt/1.5.22 (2013-10-16) |
Sorry, please ignore this diff. I neglected to include full credit
for the original patch. I'll re-send a better version in a minute.
On Sun, Jan 19, 2014 at 03:34:51PM -0600, Kent R. Spillner wrote:
> Allow distributors to provide compat symlinks for cp and md5sum on
> non-GNU systems. md5sum is used by quilt/scripts/inspect and is
> provided by GNU coreutils, but may be installed as gmd5sum on some
> systems (e.g. OpenBSD). quilt/scripts/backup-files invokes cp
> with some non-portable GNU-specific command line arguments
> (e.g. --parents --remove-destination --target-directory).
>
> Signed-off-by: Kent R. Spillner <address@hidden>
> ---
> Makefile.in | 2 ++
> configure.ac | 3 +++
> 2 files changed, 5 insertions(+)
>
> diff --git a/Makefile.in b/Makefile.in
> index 8040653..0b8092b 100644
> --- a/Makefile.in
> +++ b/Makefile.in
> @@ -42,6 +42,8 @@ MSGCAT := @MSGCAT@
> DIFFSTAT := @DIFFSTAT@
> RPMBUILD := @RPMBUILD@
> SENDMAIL := @SENDMAIL@
> +CP := @CP@
> +MD5SUM := @MD5SUM@
>
> USE_NLS := @USE_NLS@
> STAT_HARDLINK := @STAT_HARDLINK@
> diff --git a/configure.ac b/configure.ac
> index b181dcf..09f270a 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -367,6 +367,9 @@ fi
>
> QUILT_COMPAT_PROG_PATH(SENDMAIL, sendmail, [], [/usr/sbin])
>
> +QUILT_COMPAT_PROG_PATH(CP, cp, [gcp cp])
> +QUILT_COMPAT_PROG_PATH(MD5SUM, md5sum, [gmd5sum md5sum])
> +
> AC_PATH_PROG(MSGMERGE, [msgmerge])
> AC_PATH_PROG(MSGFMT, [msgfmt])
> AC_PATH_PROG(XGETTEXT, [xgettext])
> --
> 1.8.4.5
>
>
> _______________________________________________
> Quilt-dev mailing list
> address@hidden
> https://lists.nongnu.org/mailman/listinfo/quilt-dev
- [Quilt-dev] [PATCH] configure: add compat symlinks for cp and md5sum, Kent R. Spillner, 2014/01/19
- Re: [Quilt-dev] [PATCH] configure: add compat symlinks for cp and md5sum,
Kent R. Spillner <=
- [Quilt-dev] [PATCH] configure: add compat symlinks for cp and md5sum, Kent R. Spillner, 2014/01/19
- Re: [Quilt-dev] [PATCH] configure: add compat symlinks for cp and md5sum, Jean Delvare, 2014/01/20
- Re: [Quilt-dev] [PATCH] configure: add compat symlinks for cp and md5sum, Kent R. Spillner, 2014/01/20
- Re: [Quilt-dev] [PATCH] configure: add compat symlinks for cp and md5sum, Jean Delvare, 2014/01/20
- [Quilt-dev] [PATCH v2] configure: add compat symlinks for cp and md5sum, Kent R. Spillner, 2014/01/20
- Re: [Quilt-dev] [PATCH v2] configure: add compat symlinks for cp and md5sum, Martin Quinson, 2014/01/21
- Re: [Quilt-dev] [PATCH v2] configure: add compat symlinks for cp and md5sum, Kent R. Spillner, 2014/01/21