commit ff88105969daab157561e50d16fb763f08bd2e29
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Wed Jun 15 17:15:57 2016 +0200
Commit:     Roberto E. Vargas Caballero <[email protected]>
CommitDate: Wed Jun 15 17:15:57 2016 +0200

    [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.

diff --git a/lib/Makefile b/lib/Makefile
index b88a378..3795f7b 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -1,11 +1,11 @@
 # 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
 
 all: libcc.a
 
-.POSIX:
 
 libcc.a: $(OBJS)
        ar r $@ $?

Reply via email to