summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2002-12-07 11:18:57 +0000
committerBart De Schuymer <bdschuym@pandora.be>2002-12-07 11:18:57 +0000
commitba7acc815598245e446c4913f9ca338151bdbb87 (patch)
tree6e07c2fc9395565b2e4f0835166649c60a3b9f6e
parentedb8faf3288aee0bcd4e9e1ec9f09029efc51f7b (diff)
change version, use /etc/ as default ethertypes dir
-rw-r--r--userspace/ebtables2/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/userspace/ebtables2/Makefile b/userspace/ebtables2/Makefile
index f46c3f7..6d0744d 100644
--- a/userspace/ebtables2/Makefile
+++ b/userspace/ebtables2/Makefile
@@ -1,12 +1,13 @@
# ebtables Makefile
PROGNAME:=ebtables
-PROGVERSION:=2.0.1
-PROGDATE:=October\ 2002
+PROGVERSION:=2.0.2
+PROGDATE:=December\ 2002
MANDIR?=/usr/local/man
CFLAGS:=-Wall -Wunused
CC:=gcc
+
include extensions/Makefile
OBJECTS:=getethertype.o ebtables.o communication.o $(EXT_OBJS)
@@ -21,11 +22,10 @@ else
KERNEL_INCLUDES:=include/
endif
-ifneq ($(ETHERTYPESPATH),)
-ETHERTYPESFILE:=$(ETHERTYPESPATH)ethertypes
-else
-ETHERTYPESFILE:=/usr/local/etc/ethertypes
+ifeq ($(ETHERTYPESPATH),)
+ETHERTYPESPATH:=/etc/
endif
+ETHERTYPESFILE:=$(ETHERTYPESPATH)ethertypes
PROGSPECS:=-DPROGVERSION=\"$(PROGVERSION)\" \
-DPROGNAME=\"$(PROGNAME)\" \