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 -- ## List details at https://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
