dect
/
libpcap
Archived
13
0
Fork 0

No need to quote $(LEX) when passing it to runlex.sh; that way, it can

process all the arguments as such, and makes its first argument the name
of the command to run.
This commit is contained in:
guy 2007-12-31 02:34:30 +00:00
parent e854a5360f
commit a4e747119e
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
# WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#
# @(#) $Header: /tcpdump/master/libpcap/Makefile.in,v 1.109 2007-12-30 00:28:17 guy Exp $ (LBL)
# @(#) $Header: /tcpdump/master/libpcap/Makefile.in,v 1.110 2007-12-31 02:34:30 guy Exp $ (LBL)
#
# Various configurable paths (remember to edit Makefile.in, not Makefile)
@ -126,7 +126,7 @@ libpcap.dylib: $(OBJ)
scanner.c: $(srcdir)/scanner.l
@rm -f $@
./runlex.sh "$(LEX)" -o$@ $<
./runlex.sh $(LEX) -o$@ $<
scanner.o: scanner.c tokdefs.h
$(CC) $(CFLAGS) -c scanner.c