comparison nt/envadd.bat @ 52423:d5ad9d67bb1a

New file.
author Jason Rumney <jasonr@gnu.org>
date Wed, 03 Sep 2003 23:01:05 +0000
parents
children cf5d0a56b678
comparison
equal deleted inserted replaced
52422:11b0aed20b26 52423:d5ad9d67bb1a
1 rem Hack to change/add environment variables in the makefiles for the
2 rem Windows platform.
3 rem
4 rem Copyright (c) 1993-2000 Free Software Foundation, Inc.
5 rem
6 rem This file is part of GNU Emacs.
7 rem
8 rem GNU Emacs is free software; you can redistribute it and/or modify
9 rem it under the terms of the GNU General Public License as published by
10 rem the Free Software Foundation; either version 2, or (at your option)
11 rem any later version.
12 rem
13 rem GNU Emacs is distributed in the hope that it will be useful,
14 rem but WITHOUT ANY WARRANTY; without even the implied warranty of
15 rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 rem GNU General Public License for more details.
17 rem
18 rem You should have received a copy of the GNU General Public License
19 rem along with GNU Emacs; see the file COPYING. If not, write to
20 rem the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 rem Boston, MA 02111-1307, USA.
22 rem
23 rem
24 rem Usage:
25 rem envadd "ENV1=VAL1" "ENV2=VAL2" ... /C <command line>
26 rem
27 rem The "/C" switch marks the end of environment variables, and the
28 rem beginning of the command line.
29 rem
30 rem By Peter 'Luna' Runestig <peter@runestig.com> 2003
31
32 :Loop
33 if .%1% == ./C goto EndLoop
34 rem just to avoid an endless loop:
35 if .%1% == . goto EndLoop
36 set %1
37 shift
38 goto Loop
39 :EndLoop
40
41 rem Eat the "/C"
42 shift
43 rem Now, run the command line
44 %1 %2 %3 %4 %5 %6 %7 %8 %9