fd11b83d3d
ExtIPL is a boot selector compatible with IBM-IPL. ExtIPL has many extended features such as - boot an OS in a nonactive partition - boot an OS in an extended partition - boot an OS in the second or later hard disks - support LBA access Provided in PR 13955 by Hiramatsu Yoshifumi (hiramatu@boreas.dti.ne.jp)
15 lines
730 B
Text
15 lines
730 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2001/10/11 09:56:57 agc Exp $
|
|
--- Makefile.orig Sun Sep 16 00:29:47 2001
|
|
+++ Makefile Sun Sep 16 00:30:51 2001
|
|
@@ -80,9 +80,9 @@
|
|
install:
|
|
@test -d $(BINDIR) || (set -x; mkdir -p -m 0755 $(BINDIR))
|
|
install -c -s -o root -m 700 extipl $(BINDIR)
|
|
- sed -e 's#!!DOCDIR!!#$(DOCDIR)#g' extipl.8.in | gzip > extipl.8.gz
|
|
+ sed -e 's#!!DOCDIR!!#$(DOCDIR)#g' extipl.8.in > extipl.8
|
|
@test -d $(MAN8) || (set -x; mkdir -p -m 0755 $(MAN8))
|
|
- install -o root -m 644 extipl.8.gz $(MAN8)
|
|
+ install -o root -m 644 extipl.8 $(MAN8)
|
|
@test -d $(ENGDIR) || (set -x; mkdir -p -m 0755 $(ENGDIR))
|
|
install -c -o root -m 644 ../doc/English/*.txt $(ENGDIR)
|
|
@test -d $(JPNDIR) || (set -x; mkdir -p -m 0755 $(JPNDIR))
|