diff options
author | Miles Bader <miles@gnu.org> | 1997-06-26 00:14:56 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-06-26 00:14:56 +0000 |
commit | 4c241c7400b6e9d3412b3aa9e59713e212dd9abf (patch) | |
tree | 06ca7bb7602b2b237cad78f88c99be9ae5677420 /release | |
parent | 231f26c27d349c6b38fb4a692b58ce8431f39b63 (diff) |
(bfloppy.ext2, rfloppy.ext2.gz):
Set owner to root.wheel.
Use $(bfloppy-src) as the source, rather than /.
(bfloppy-src):
New variable.
Diffstat (limited to 'release')
-rw-r--r-- | release/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/release/Makefile b/release/Makefile index 9c9e614a..e82fddcc 100644 --- a/release/Makefile +++ b/release/Makefile @@ -53,9 +53,13 @@ dist-links: touch $(dist-root)/servers/exec endif +# Where to get files for the floppies from. +bfloppy-src=$(firstword $(dist-root) /) + bfloppy.ext2: mkfsimage bfloppy.copy - ./mkfsimage bfloppy.ext2 \ - / --copy-rules=$(srcdir)/bfloppy.copy \ - $(srcdir) --copy-rules=$(srcdir)/bfloppy-special.copy + ./mkfsimage $@ --owner=root.wheel \ + $(bfloppy-src) --copy-rules=$(srcdir)/bfloppy.copy \ + $(srcdir) --copy-rules=$(srcdir)/bfloppy-special.copy rfloppy.ext2.gz: mkfsimage rfloppy.copy - ./mkfsimage --compress rfloppy.ext2.gz / --copy-rules=$(srcdir)/rfloppy.copy + ./mkfsimage $@ --compress --owner=root.wheel \ + $(bfloppy-src) --copy-rules=$(srcdir)/rfloppy.copy |