pkgsrc-Changes archive

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

CVS commit: pkgsrc/multimedia/libvpx



Module Name:    pkgsrc
Committed By:   joerg
Date:           Tue Jun 13 17:32:07 UTC 2017

Modified Files:
        pkgsrc/multimedia/libvpx: Makefile

Log Message:
Don't print noise if CCPATH is undefined.


To generate a diff of this commit:
cvs rdiff -u -r1.69 -r1.70 pkgsrc/multimedia/libvpx/Makefile

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

Modified files:

Index: pkgsrc/multimedia/libvpx/Makefile
diff -u pkgsrc/multimedia/libvpx/Makefile:1.69 pkgsrc/multimedia/libvpx/Makefile:1.70
--- pkgsrc/multimedia/libvpx/Makefile:1.69      Wed May 10 10:45:07 2017
+++ pkgsrc/multimedia/libvpx/Makefile   Tue Jun 13 17:32:07 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.69 2017/05/10 10:45:07 jperkin Exp $
+# $NetBSD: Makefile,v 1.70 2017/06/13 17:32:07 joerg Exp $
 
 DISTNAME=      libvpx-1.6.1
 CATEGORIES=    multimedia
@@ -93,7 +93,7 @@ SUBST_STAGE.clang=    pre-configure
 SUBST_FILES.clang=     build/make/Makefile
 SUBST_MESSAGE.clang=   Disabling clang integrated assembler
 # Test for whether clang supports -fno-integrated-as instead of -no-integrated-as
-CLANG_INTEGRATED_AS!=  if ${CCPATH} --version -fno-integrated-as > /dev/null 2>&1; then ${ECHO} "-fno-integrated-as"; else ${ECHO} "-no-integrated-as"; fi
+CLANG_INTEGRATED_AS!=  if ${CCPATH:Utrue} --version -fno-integrated-as > /dev/null 2>&1; then ${ECHO} "-fno-integrated-as"; else ${ECHO} "-no-integrated-as"; fi
 SUBST_SED.clang=       -e 's/-DINLINE_ASM/-DINLINE_ASM ${CLANG_INTEGRATED_AS}/'
 .  endif
 .endif



Home | Main Index | Thread Index | Old Index