* It seems that svnversion prints a carriage return on Cygwin, so we
get a invalid #define VERSION. Use "svnversion -n" to leave out the newline. Fix provided by Marc Weber.
This commit is contained in:
		
							parent
							
								
									ae7990cc88
								
							
						
					
					
						commit
						2716f9bc5f
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -9,14 +9,14 @@ STABLE=0 | |||
| 
 | ||||
| # Put the revision number in the version. | ||||
| if test "$STABLE" != "1"; then | ||||
|     if REVISION=`test -d $srcdir/.svn && svnversion $srcdir 2> /dev/null`; then | ||||
|     if REVISION=`test -d $srcdir/.svn && svnversion -n $srcdir 2> /dev/null`; then | ||||
|         VERSION=${VERSION}pre${REVISION} | ||||
|     elif REVISION=`cat $srcdir/svn-revision 2> /dev/null`; then | ||||
|         VERSION=${VERSION}pre${REVISION} | ||||
|     fi | ||||
| fi | ||||
| 
 | ||||
| AC_DEFINE_UNQUOTED(NIX_VERSION, ["$(echo $VERSION)"], [version]) | ||||
| AC_DEFINE_UNQUOTED(NIX_VERSION, ["$VERSION"], [version]) | ||||
| 
 | ||||
| AC_PREFIX_DEFAULT(/nix) | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue