emacs-devel
[Top][All Lists]
Advanced

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

Re: Latest 21.3 CVS and MS Windows


From: Frank Schmitt
Subject: Re: Latest 21.3 CVS and MS Windows
Date: Thu, 06 Feb 2003 22:28:43 +0100
User-agent: Gnus/5.090015 (Oort Gnus v0.15) XEmacs/21.5 (brussels sprouts, i586-pc-win32)

Jason Rumney <address@hidden> writes:

> Frank Schmitt <address@hidden> writes:
>
>> makeinfo small-example.texi
>> IF EXIST small-example.info (
>>   del small-example.info
>>   set HAVE_MAKEINFO=1
>> ) ELSE (
>>   echo Couldn't find Makeinfo, skipping creation of info files
>> )
>> 
>> According to "help if" in Windows XP's cmd.exe this should work. However
>> I don't know about the Win9x command.com.
>
> Multiline if's do not work in command.com.

Multiline if's can be simulated by GOTOs:

:testMakeinfo
makeinfo small-example.texi
IF NOT EXIST small-example.info GOTO noMakeinfo
del small-example.info
set HAVE_MAKEINFO=1
GOTO testMakeInfoEnd

:noMakeinfo
echo Couldn't find Makeinfo, skipping creation of info files

:testMakeinfoEnd

> We also need to cater for bash (although that is done elsewhere in the
> code by using separate make rules).

Sorry, what do you mean?

-- 
One Ring to rule them all, One Ring to find them,
One Ring to bring them all and in the darkness bind them
In the Land of Mordor where the Shadows lie.





reply via email to

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