diff options
Diffstat (limited to 'sys-boot/palo/files/palo-1.92-toolchain.patch')
-rw-r--r-- | sys-boot/palo/files/palo-1.92-toolchain.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sys-boot/palo/files/palo-1.92-toolchain.patch b/sys-boot/palo/files/palo-1.92-toolchain.patch new file mode 100644 index 000000000000..b72947b63699 --- /dev/null +++ b/sys-boot/palo/files/palo-1.92-toolchain.patch @@ -0,0 +1,20 @@ +--- a/palo/Makefile ++++ b/palo/Makefile +@@ -14,7 +14,7 @@ + ifeq ($(strip ${OS}),HP-UX) + CFLAGS=-g -O -I../include -I../lib -I$(PA)/include + else +-CFLAGS=-g -O -I../include -I../lib ++CFLAGS+= -O -I../include -I../lib + endif + + # LDFLAGS=-Wl,-Bstatic +@@ -34,7 +34,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) |