Re: [exim] Exim 4.77 RC1 uploaded (hurried schedule)

Top Page
Delete this message
Reply to this message
Author: Phil Pennock
Date:  
To: exim-users
Subject: Re: [exim] Exim 4.77 RC1 uploaded (hurried schedule)
On 2011-10-03 at 15:15 +0200, Frank Elsner wrote:
> On Mon, 3 Oct 2011 08:41:33 -0400 Phil Pennock wrote:
> > I have uploaded Exim 4.77 RC1 to:
> >     ftp://ftp.exim.org/pub/exim/exim4/test/

>
>
> Compiles and builds perfect under Fedora 14, but install complains:
>
> root@seymour: /usr/local/exim/src/exim-4.77_RC1<87> make install
> `Makefile' is up to date.
>
> make[1]: Entering directory `/usr/local/exim/src/exim-4.77_RC1/build-Linux-i386'
> ../scripts/reversion: line 9: .: version.sh: file not found


Ahah.

  8 if   [ -f version.sh ]
  9 then .    version.sh
 10 elif [ -f ../src/version.sh ]
 11 then .    ../src/version.sh
 12 fi


On BSD, /bin/sh's "." command will look in cwd if the command is not
found in $PATH, thus it working for me and presumably why it worked for
the original author.

I'll change it to: ./version.h

-Phil