shithub: scc

Download patch

ref: bae95bb5eaa1452094fca98bae3ba07f444fca77
parent: 7bc77eb2a55559b64e2100e603490fc6bcc76aac
author: Roberto E. Vargas Caballero <[email protected]>
date: Wed Jun 15 13:15:57 EDT 2016

[lib] Move .POSIX at the beginning

It only has effect if it is in the first line (comment lines are not counted)
of the Makefile.

--- a/lib/Makefile
+++ b/lib/Makefile
@@ -1,4 +1,5 @@
 # See LICENSE file for copyright and license details.
+.POSIX:
 include ../config.mk
 
 OBJS = die.o xcalloc.o xmalloc.o xrealloc.o xstrdup.o debug.o
@@ -5,7 +6,6 @@
 
 all: libcc.a
 
-.POSIX:
 
 libcc.a: $(OBJS)
 	ar r $@ $?