diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-11-01 10:01:21 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-11-01 10:01:21 +0000 |
commit | ad9ec1af37d85f8e24fd01b97420656ffda0c3dd (patch) | |
tree | b588686cdedbaec6ece325d313340f5bac0f555a /config.nmake | |
parent | 749d00f331056b34906a273da60f5859a933b3a9 (diff) | |
download | wireshark-ad9ec1af37d85f8e24fd01b97420656ffda0c3dd.tar.gz wireshark-ad9ec1af37d85f8e24fd01b97420656ffda0c3dd.tar.bz2 wireshark-ad9ec1af37d85f8e24fd01b97420656ffda0c3dd.zip |
Cygwin doesn't necessarily come with an "sh.exe", so use "$(SH)" rather
than "sh" to run a Bourne-compatible shell in "Makefile.nmake", and
define "SH" to be "bash" in "config.nmake".
svn path=/trunk/; revision=6540
Diffstat (limited to 'config.nmake')
-rw-r--r-- | config.nmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.nmake b/config.nmake index 3b9c509a89..90fca97594 100644 --- a/config.nmake +++ b/config.nmake @@ -1,4 +1,4 @@ -# $Id: config.nmake,v 1.31 2002/10/09 03:07:27 gerald Exp $ +# $Id: config.nmake,v 1.32 2002/11/01 10:01:21 guy Exp $ VERSION=0.9.7 RC_VERSION=0.9.7 @@ -24,6 +24,7 @@ PDB_FILE=vc*.pdb # Set path if you need to find some binary PATH=c:\cygnus\cygwin-b20\H-i586-cygwin32\bin;c:\python22;c:\ethereal\wiretap;c:\program files\common files\gnu;$(PATH) +SH=bash PERL=perl POD2MAN=pod2man POD2HTML=pod2html |