summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2015-11-23 15:50:35 +0100
committerLars Wendler <polynomial-c@gentoo.org>2015-11-23 15:50:53 +0100
commit7cbcad959b92bafaca2bfd45eef5c65d86ec674d (patch)
treed14a4622b1d4743b34b7201cf9b9b945fe687ee7 /sys-boot/lilo/files
parentsys-boot/lilo: Bump to version 24.2 (diff)
downloadgentoo-7cbcad959b92bafaca2bfd45eef5c65d86ec674d.tar.gz
gentoo-7cbcad959b92bafaca2bfd45eef5c65d86ec674d.tar.bz2
gentoo-7cbcad959b92bafaca2bfd45eef5c65d86ec674d.zip
sys-boot/lilo: Removed old.
Package-Manager: portage-2.2.25 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-boot/lilo/files')
-rw-r--r--sys-boot/lilo/files/lilo-23.0-make.patch103
1 files changed, 0 insertions, 103 deletions
diff --git a/sys-boot/lilo/files/lilo-23.0-make.patch b/sys-boot/lilo/files/lilo-23.0-make.patch
deleted file mode 100644
index 00b15c52ca07..000000000000
--- a/sys-boot/lilo/files/lilo-23.0-make.patch
+++ /dev/null
@@ -1,103 +0,0 @@
---- a/Makefile 2010-06-18 19:17:48.000000000 +0200
-+++ b/Makefile 2010-07-20 02:00:18.000000000 +0200
-@@ -26,19 +26,19 @@
- # everything needed to run, just short of installation
- #
- all: test
-- make -C src all
-+ $(MAKE) -C src all
-
- #
- # everything above plus the statically linked version
- #
- alles: test
-- make -C src alles
-+ $(MAKE) -C src alles
-
- #
- # documentation files
- #
- docs:
-- make -C doc all
-+ $(MAKE) -C doc all
-
- #
- # if you have the 'bcc' compiler, then you can make the diagnostics, too
-@@ -55,23 +55,23 @@
- @echo before you proceed from this point.
- @echo "Press <Enter> to continue, <^C> to abort ..."
- @read
-- @make -C src floppy1
-+ @$(MAKE) -C src floppy1
- @echo Done.
- @echo
- @echo Remove the floppy from the drive. Label it "\"1.6\""
- @echo "Press <Enter> to continue, <^C> to abort ..."
- @read
-- @make -C src floppy2
-+ @$(MAKE) -C src floppy2
- @echo Done.
- @echo
- @echo Remove the floppy from the drive. Label it "\"2.4\""
- @echo
-
- diagnostic: test
-- make -C src diagnostic
-+ $(MAKE) -C src diagnostic
-
- dosexe: test
-- make -C dos lilo
-+ $(MAKE) -C dos lilo
-
- #
- # test for compilers & utilities
-@@ -85,33 +85,33 @@
- # shorthand install, if one knows that one has the 'bcc' compiler
- #
- ins:
-- make -C src ins
-+ $(MAKE) -C src ins
-
- #
- # normal install, but doesn't make the diagnostic binaries
- #
- install: all
-- make -C src install
-- make -C man install
-- make -C dos install
-- make -C src insobs
-+ $(MAKE) -C src install
-+ $(MAKE) -C man install
-+ $(MAKE) -C dos install
-+ $(MAKE) -C src insobs
-
- tidy:
-- make -C src tidy
-- make -C diagnose tidy
-- make -C dos tidy
-- make -C doc tidy
-+ $(MAKE) -C src tidy
-+ $(MAKE) -C diagnose tidy
-+ $(MAKE) -C dos tidy
-+ $(MAKE) -C doc tidy
-
- clean: tidy
- rm -f test.img
-- make -C src clean
-- make -C diagnose clean
-- make -C dos clean
-+ $(MAKE) -C src clean
-+ $(MAKE) -C diagnose clean
-+ $(MAKE) -C dos clean
-
- spotless: distclean
- distclean: clean
-- make -C src distclean
-- make -C diagnose distclean
-- make -C dos distclean
-- make -C doc clean
-+ $(MAKE) -C src distclean
-+ $(MAKE) -C diagnose distclean
-+ $(MAKE) -C dos distclean
-+ $(MAKE) -C doc clean
-