aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake.inc
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2013-11-03 12:22:39 +0000
committerJörg Mayer <jmayer@loplof.de>2013-11-03 12:22:39 +0000
commit117a59d7a2998077d5e5163ce1f8d11edd220944 (patch)
tree3354cb559c02db144cb687c6c0497b7be1de9b6d /Makefile.nmake.inc
parent7054372c261ac92233707cfd49851b5e6213826f (diff)
Pass the name of the sed executable as an explicit argurment to
runlex.sh (like it is done with LEX already). May fix a problem on Windows with cmake. svn path=/trunk/; revision=53059
Diffstat (limited to 'Makefile.nmake.inc')
-rw-r--r--Makefile.nmake.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.nmake.inc b/Makefile.nmake.inc
index 2fba495077..5bc868e992 100644
--- a/Makefile.nmake.inc
+++ b/Makefile.nmake.inc
@@ -6,17 +6,17 @@
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 2007 Gerald Combs
-#
+#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
-#
+#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
@@ -24,4 +24,4 @@
.SUFFIXES: .l
.l.c:
- $(SH) $(RUNLEX) "$(LEX)" -o$@ $<
+ $(SH) $(RUNLEX) "$(LEX)" "$(SED)" -o$@ $<