summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-boot/lilo/files/lilo-23.0-make.patch')
-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
-