Update copyright year to 2015
[emacs.git] / nt / envadd.bat
blob21f0f4b08f05f8c868830bdcff97b3e96a854752
1 rem  Hack to change/add environment variables in the makefiles for the\r
2 rem  Windows platform.\r
3 \r
4 rem Copyright (C) 2003-2015 Free Software Foundation, Inc.\r
5 \r
6 rem  This file is part of GNU Emacs.\r
7 \r
8 rem  GNU Emacs is free software: you can redistribute it and/or modify\r
9 rem  it under the terms of the GNU General Public License as published by\r
10 rem  the Free Software Foundation, either version 3 of the License, or\r
11 rem  (at your option) any later version.\r
13 rem  GNU Emacs is distributed in the hope that it will be useful,\r
14 rem  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
15 rem  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
16 rem  GNU General Public License for more details.\r
18 rem  You should have received a copy of the GNU General Public License\r
19 rem  along with GNU Emacs.  If not, see http://www.gnu.org/licenses/.\r
22 rem  Usage:\r
23 rem    envadd "ENV1=VAL1" "ENV2=VAL2" ... /C <command line>\r
24 rem\r
25 rem  The "/C" switch marks the end of environment variables, and the\r
26 rem  beginning of the command line.\r
27 rem\r
28 rem  By Peter 'Luna' Runestig <peter@runestig.com> 2003\r
30 :Loop\r
31 if .%1% == ./C goto EndLoop\r
32 rem just to avoid an endless loop:\r
33 if .%1% == . goto EndLoop\r
34 set %1\r
35 shift\r
36 goto Loop\r
37 :EndLoop\r
39 rem Eat the "/C"\r
40 shift\r
41 rem Now, run the command line\r
42 %1 %2 %3 %4 %5 %6 %7 %8 %9\r