bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] sharutils-4.3.80: configure.ac tweak to build uuencode/uudecode


From: Corinna Vinschen
Subject: [PATCH] sharutils-4.3.80: configure.ac tweak to build uuencode/uudecode OOTB on Cygwin
Date: Mon, 30 May 2005 13:49:56 +0200
User-agent: Mutt/1.4.2i

Hi,

the below patch adds a minor tweak to configure.ac relative to the latest
sharutils 4.3.80.  The problem is that the configure script misses to add
the $(EXEEXT) suffix to uuencode and uudecode when adding them to Makefile's
bin_PROGRAMS.  As a result, the build dependencies are incorrect when
building uuencode and uudecode on Cygwin and the build fails.  The below
patch fixes this and allows to build the whole package on Cygwin OOTB.


Thanks for considering,
Corinna


        * configure.ac: Add EXEEXT suffix to uuencode/uudecode.

--- configure.ac.ORIG   2005-05-30 13:45:19.816616300 +0200
+++ configure.ac        2005-05-30 13:21:43.093750000 +0200
@@ -111,7 +111,7 @@ AC_ARG_ENABLE(uucode,
 [  --disable-uucode        disable installation of uuencode and uudecode],
 [if test "$enableval" = yes; then
   AC_MSG_RESULT(yes)
-  ADD_PROG="uudecode uuencode"
+  ADD_PROG='uudecode$(EXEEXT) uuencode$(EXEEXT)'
   DIST_MAN1PAGES="uuencode.1"
   NODIST_MAN1PAGES="uudecode.1"
   MAN5PAGES="uuencode.5"
@@ -119,7 +119,7 @@ else
   AC_MSG_RESULT(no)
 fi], [
   AC_MSG_RESULT(yes)
-  ADD_PROG="uudecode uuencode"
+  ADD_PROG='uudecode$(EXEEXT) uuencode$(EXEEXT)'
   DIST_MAN1PAGES="uuencode.1"
   NODIST_MAN1PAGES="uudecode.1"
   MAN5PAGES="uuencode.5"


-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader          mailto:address@hidden
Red Hat, Inc.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]