diff options
author | abial <abial@FreeBSD.org> | 1998-09-29 12:12:47 +0000 |
---|---|---|
committer | abial <abial@FreeBSD.org> | 1998-09-29 12:12:47 +0000 |
commit | 4542630b2c3d0a707ead47141c750061b56942a7 (patch) | |
tree | 50369c59c104ffa9c2505e52a0fbbbb5d39840d2 | |
parent | 19b039f9a498344177998e96862daa77c858babf (diff) | |
download | FreeBSD-src-4542630b2c3d0a707ead47141c750061b56942a7.zip FreeBSD-src-4542630b2c3d0a707ead47141c750061b56942a7.tar.gz |
Make proper use of ${suffix} instead of hardwired suffixes.
Pointed out by: Randal Masutani <randal@comtest.com>
-rw-r--r-- | release/picobsd/dial/conf/Makefile | 4 | ||||
-rw-r--r-- | release/picobsd/isp/conf/Makefile | 4 | ||||
-rw-r--r-- | release/picobsd/net/conf/Makefile | 4 | ||||
-rw-r--r-- | release/picobsd/router/conf/Makefile | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/release/picobsd/dial/conf/Makefile b/release/picobsd/dial/conf/Makefile index 8f017d9..aafad23 100644 --- a/release/picobsd/dial/conf/Makefile +++ b/release/picobsd/dial/conf/Makefile @@ -1,10 +1,10 @@ -# $Id$ +# $Id: Makefile,v 1.1 1998/09/03 10:41:20 abial Exp $ # SRC?=/usr/src CONF?=$(SRC)/sys/i386/conf -CONFFILE=PICOBSD-D.${SIZE} +CONFFILE=PICOBSD${suffix}.${SIZE} COMPILE=$(SRC)/sys/compile/$(CONFFILE) KERNFILE=$(COMPILE)/kernel diff --git a/release/picobsd/isp/conf/Makefile b/release/picobsd/isp/conf/Makefile index e2c5464..214a175 100644 --- a/release/picobsd/isp/conf/Makefile +++ b/release/picobsd/isp/conf/Makefile @@ -1,10 +1,10 @@ -# $Id$ +# $Id: Makefile,v 1.1 1998/09/03 10:41:25 abial Exp $ # SRC?=/usr/src CONF?=$(SRC)/sys/i386/conf -CONFFILE=PICOBSD-I.${SIZE} +CONFFILE=PICOBSD${suffix}.${SIZE} COMPILE=$(SRC)/sys/compile/$(CONFFILE) KERNFILE=$(COMPILE)/kernel diff --git a/release/picobsd/net/conf/Makefile b/release/picobsd/net/conf/Makefile index 5749bb6..98eaaed 100644 --- a/release/picobsd/net/conf/Makefile +++ b/release/picobsd/net/conf/Makefile @@ -1,10 +1,10 @@ -# $Id$ +# $Id: Makefile,v 1.1 1998/09/03 10:41:29 abial Exp $ # SRC?=/usr/src CONF?=$(SRC)/sys/i386/conf -CONFFILE=PICOBSD-N.${SIZE} +CONFFILE=PICOBSD${suffix}.${SIZE} COMPILE=$(SRC)/sys/compile/$(CONFFILE) KERNFILE=$(COMPILE)/kernel diff --git a/release/picobsd/router/conf/Makefile b/release/picobsd/router/conf/Makefile index f23e2d7..442e504 100644 --- a/release/picobsd/router/conf/Makefile +++ b/release/picobsd/router/conf/Makefile @@ -1,10 +1,10 @@ -# $Id$ +# $Id: Makefile,v 1.1 1998/09/03 10:41:36 abial Exp $ # SRC?=/usr/src CONF?=$(SRC)/sys/i386/conf -CONFFILE=PICOBSD-R.${SIZE} +CONFFILE=PICOBSD${suffix}.${SIZE} COMPILE=$(SRC)/sys/compile/$(CONFFILE) KERNFILE=$(COMPILE)/kernel |