diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2003-01-03 18:36:09 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2003-01-03 18:36:09 +0000 |
commit | a7935b98dff112aeea8aa755bfd26765722ff58c (patch) | |
tree | 1a7f298dcd3af62f360cd1de371777a3f7c3c683 /distrib/i386 | |
parent | c26db96c38cc00d2b548ce64eaa7c9db1ac288eb (diff) |
Save a few more bytes on install media by stripping comments from
dhclient-script and disktab files in architectures where this wasn't
already being done.
OK deraadt@.
Diffstat (limited to 'distrib/i386')
-rw-r--r-- | distrib/i386/common/list | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/distrib/i386/common/list b/distrib/i386/common/list index 2df308b0da8..8f7092c162f 100644 --- a/distrib/i386/common/list +++ b/distrib/i386/common/list @@ -1,4 +1,4 @@ -# $OpenBSD: list,v 1.7 2002/05/01 19:21:28 mickey Exp $ +# $OpenBSD: list,v 1.8 2003/01/03 18:36:08 krw Exp $ SRCDIRS distrib/special SRCDIRS usr.bin bin sbin usr.sbin gnu/usr.bin @@ -64,7 +64,7 @@ COPY ${DESTDIR}/usr/mdec/boot usr/mdec/boot # various files that we need in /etc for the install COPY ${DESTDIR}/etc/group etc/group COPY ${DESTDIR}/etc/spwd.db etc/spwd.db -COPY ${DESTDIR}/etc/disktab etc/disktab.shadow +SCRIPT ${DESTDIR}/etc/disktab etc/disktab.shadow COPY ${CURDIR}/../../miniroot/protocols etc/protocols COPY ${CURDIR}/../../miniroot/services etc/services TERMCAP vt100,vt220,dumb usr/share/misc/termcap @@ -75,7 +75,7 @@ SYMLINK /tmp/resolv.conf.shadow etc/resolv.conf SYMLINK /tmp/hosts etc/hosts # dhcp things -COPY ${DESTDIR}/sbin/dhclient-script sbin/dhclient-script +SCRIPT ${DESTDIR}/sbin/dhclient-script sbin/dhclient-script # and the installation tools SCRIPT ${CURDIR}/../../miniroot/dot.profile .profile @@ -83,4 +83,4 @@ SCRIPT ${CURDIR}/../common/install.md install.md SCRIPT ${CURDIR}/../../miniroot/upgrade.sh upgrade SCRIPT ${CURDIR}/../../miniroot/install.sh install SCRIPT ${CURDIR}/../../miniroot/install.sub install.sub -SPECIAL chmod 755 install upgrade +SPECIAL chmod 755 install upgrade sbin/dhclient-script |