diff options
author | Jeremie Courreges-Anglas <jca@cvs.openbsd.org> | 2023-09-04 17:08:04 +0000 |
---|---|---|
committer | Jeremie Courreges-Anglas <jca@cvs.openbsd.org> | 2023-09-04 17:08:04 +0000 |
commit | d8e00cd3c37cb1ad2a27cef4923109006a4ac367 (patch) | |
tree | 51780364b84c4ed997e51e57833a727667ee82c1 | |
parent | 6d076712458ecd728d6ef4b7385b25750090d6cf (diff) |
Save some space on the ramdisks, actually use -DSMALL
This disables the helpers that recognize compressed archives when the
user failed to use the proper flag/command. Those are not terribly
useful on the ramdisks and the fallback behavior is sane.
Went through a make release Just In Case(tm).
Spotted by caspar@, ok millert@ sthen@ caspar@
-rw-r--r-- | distrib/special/pax/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/special/pax/Makefile b/distrib/special/pax/Makefile index ae415cb7a1f..d60465e469c 100644 --- a/distrib/special/pax/Makefile +++ b/distrib/special/pax/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.2 2018/09/13 16:34:33 sthen Exp $ +# $OpenBSD: Makefile,v 1.3 2023/09/04 17:08:03 jca Exp $ .PATH: ${.CURDIR}/../../../bin/pax -CFLAGS+=-DNOCPIO -I${.CURDIR}/../../../bin/pax +CFLAGS+=-DNOCPIO -DSMALL -I${.CURDIR}/../../../bin/pax PROG= pax SRCS= ar_io.c ar_subs.c buf_subs.c file_subs.c ftree.c\ |