diff options
author | meem <none@none> | 2007-10-22 16:50:32 -0700 |
---|---|---|
committer | meem <none@none> | 2007-10-22 16:50:32 -0700 |
commit | 2032ea7bd13069ba4884066ed18f83bf12b3e247 (patch) | |
tree | 6d4cb43d8fd80695b778494c44df393fc1bb3cd4 /usr/src/cmd/ipf | |
parent | b9238976491622ad75a67ab0c12edf99e36212b9 (diff) | |
download | illumos-gate-2032ea7bd13069ba4884066ed18f83bf12b3e247.tar.gz |
6599659 Makefiles shouldn't have to tear $(RELEASE) apart
Contributed by Roland Mainz <roland.mainz@nrubsig.org>
Diffstat (limited to 'usr/src/cmd/ipf')
-rw-r--r-- | usr/src/cmd/ipf/Makefile.ipf | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr/src/cmd/ipf/Makefile.ipf b/usr/src/cmd/ipf/Makefile.ipf index 7a6d8c4c16..ca910f5877 100644 --- a/usr/src/cmd/ipf/Makefile.ipf +++ b/usr/src/cmd/ipf/Makefile.ipf @@ -1,5 +1,5 @@ # -# Copyright 2006 Sun Microsystems, Inc. All rights reserved. +# Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # #ident "%Z%%M% %I% %E% SMI" @@ -14,6 +14,5 @@ LIBIPF64= ../../lib/$(MACH64)/libipf.a COMMONIPF= $(SRC)/uts/common/inet/ipf KERNELIPF= $(SRC)/uts/common/inet/pfil -MINOR= echo $(RELEASE) | cut -d. -f2 CPPFLAGS += -I$(COMMONIPF) -I$(KERNELIPF) -DSUNDDI -DUSE_INET6 \ - -DSOLARIS2=$(MINOR:sh) + -DSOLARIS2=$(RELEASE_MINOR) |