ngrep-1.45-make-objs.patch 558 B

1234567891011121314151617181920212223
  1. ngrep: don't include regex objects since we're using pcre
  2. Signed-off-by: Wade Berrier <wberrier@gmail.com>
  3. --- ngrep-1.45/Makefile.in.orig 2006-11-28 06:35:37.000000000 -0700
  4. +++ ngrep-1.45/Makefile.in 2011-06-29 14:05:27.000000000 -0600
  5. @@ -32,13 +32,13 @@
  6. INSTALL = ./install-sh
  7. -REGEX_DIR=@REGEX_DIR@
  8. -REGEX_OBJS=@REGEX_OBJS@
  9. +REGEX_DIR=
  10. +REGEX_OBJS=
  11. all: $(TARGET)
  12. -$(TARGET): $(REGEX_OBJS) $(OBJS)
  13. +$(TARGET): $(OBJS)
  14. $(CC) $(CFLAGS) $(LDFLAGS) $(STRIPFLAG) -o $(TARGET) $(OBJS) $(REGEX_OBJS) $(LIBS)
  15. debug: $(REGEX_OBJS) $(OBJS)