pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/emulators/cmdpack



Module Name:    pkgsrc
Committed By:   wiz
Date:           Wed Jul 12 12:20:28 UTC 2017

Modified Files:
        pkgsrc/emulators/cmdpack: Makefile

Log Message:
Honor CFLAGS and LDFLAGS.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/emulators/cmdpack/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/emulators/cmdpack/Makefile
diff -u pkgsrc/emulators/cmdpack/Makefile:1.5 pkgsrc/emulators/cmdpack/Makefile:1.6
--- pkgsrc/emulators/cmdpack/Makefile:1.5       Wed Mar  4 05:53:52 2015
+++ pkgsrc/emulators/cmdpack/Makefile   Wed Jul 12 12:20:28 2017
@@ -1,5 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2015/03/04 05:53:52 snj Exp $
-#
+# $NetBSD: Makefile,v 1.6 2017/07/12 12:20:28 wiz Exp $
 
 DISTNAME=      cmdpack-1.03-src
 PKGNAME=       ${DISTNAME:S/-src//}
@@ -18,7 +17,7 @@ INSTALLATION_DIRS=    bin share/doc/cmdpack
 do-build:
        cd ${WRKSRC}/src && \
        for file in bin2iso bincomp brrrip byteshuf byteswap cdpatch ecm fakecrc hax65816 id3point pecompat rels screamf subfile uips usfv vb2rip wordadd zerofill; do \
-               ${CC} -o $$file $$file.c; \
+               ${CC} ${CFLAGS} ${LDFLAGS} -o $$file $$file.c; \
        done
        ${LN} ${WRKSRC}/src/ecm ${WRKSRC}/src/unecm
 



Home | Main Index | Thread Index | Old Index