Fix missing separator error in Makefile

This commit is contained in:
Steven Kreuzer 2017-08-30 12:47:35 +00:00
parent 5d53004f9c
commit 58674e71d0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=448976
2 changed files with 10 additions and 12 deletions

View File

@ -1,12 +0,0 @@
--- src/Makevars.in.orig 2011-09-22 15:29:19.000000000 +0000
+++ src/Makevars.in 2011-09-22 15:29:44.000000000 +0000
@@ -1,7 +1,7 @@
# we need to add JNI specific stuff here
-ifdef DEBUG
+.ifdef DEBUG
PKG_CFLAGS+=-DJGD_DEBUG
-endif
+.endif
PKG_CFLAGS+=@CFLAGS@
PKG_CPPFLAGS+=@CPPFLAGS@ -I. -Iinclude
PKG_LIBS+=@LDFLAGS@ @LIBS@

View File

@ -0,0 +1,10 @@
--- src/Makevars.in.orig 2017-08-30 01:39:25 UTC
+++ src/Makevars.in
@@ -1,7 +1,4 @@
# we need to add JNI specific stuff here
-ifdef DEBUG
- PKG_CFLAGS+=-DJGD_DEBUG
-endif
PKG_CFLAGS+=@CFLAGS@
PKG_CPPFLAGS+=@CPPFLAGS@ -I. -Iinclude
PKG_LIBS+=@LDFLAGS@ @LIBS@