summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2018-04-18 19:14:47 +0200
committerJeroen Roovers <jer@gentoo.org>2018-04-18 19:14:47 +0200
commit0cb9c80469e3b783010ca9608534e6231c493572 (patch)
tree5fc3578d6f5d32975fb1af34450ae46b7a65eec4 /sys-boot/palo/files
parentdev-util/debootstrap: Old. (diff)
downloadgentoo-0cb9c80469e3b783010ca9608534e6231c493572.tar.gz
gentoo-0cb9c80469e3b783010ca9608534e6231c493572.tar.bz2
gentoo-0cb9c80469e3b783010ca9608534e6231c493572.zip
sys-boot/palo: Old.
Package-Manager: Portage-2.3.28, Repoman-2.3.9
Diffstat (limited to 'sys-boot/palo/files')
-rw-r--r--sys-boot/palo/files/palo-1.96-toolchain.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/sys-boot/palo/files/palo-1.96-toolchain.patch b/sys-boot/palo/files/palo-1.96-toolchain.patch
deleted file mode 100644
index 5b9e792bf049..000000000000
--- a/sys-boot/palo/files/palo-1.96-toolchain.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/palo/Makefile
-+++ b/palo/Makefile
-@@ -10,9 +10,9 @@
- OS := $(shell uname -s)
- CC?=cc
- ifeq ($(strip ${OS}),HP-UX)
--CFLAGS=-g -O -I../include -I../lib -I$(PA)/include
-+CFLAGS=-O -I../include -I../lib -I$(PA)/include
- else
--CFLAGS=-g -O -I../include -I../lib -D_FILE_OFFSET_BITS=64
-+CFLAGS=-O -I../include -I../lib -D_FILE_OFFSET_BITS=64
- endif
-
- ifneq ("$(wildcard /etc/debian_version)","")
-@@ -22,7 +22,6 @@
- endif
-
- # LDFLAGS=-Wl,-Bstatic
--LDFLAGS=
-
- OFILES2=mkbootable.o elf64.o load.o paloio.o elf32.o error.o gzip.o
-
-@@ -38,7 +37,7 @@
- $(CC) $(CFLAGS) $(LDFLAGS) -o palo palo.a build.o
-
- palo.a: $(OFILES)
-- ar rv palo.a $?
-+ $(AR) rv palo.a $?
-
- mkbootable: $(OFILES2)
- $(CC) $(CFLAGS) $(LDFLAGS) -o mkbootable $(OFILES2)