[svn-commits] fjoe: freebsd/trunk r9241 - /freebsd/trunk/freebsd/Makefile.inc
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Wed Sep 1 00:41:36 CDT 2010
Author: fjoe
Date: Wed Sep 1 00:41:32 2010
New Revision: 9241
URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=9241
Log:
Add ability to skip fetching tarballs during the build.
Modified:
freebsd/trunk/freebsd/Makefile.inc
Modified: freebsd/trunk/freebsd/Makefile.inc
URL: http://svnview.digium.com/svn/dahdi/freebsd/trunk/freebsd/Makefile.inc?view=diff&rev=9241&r1=9240&r2=9241
==============================================================================
--- freebsd/trunk/freebsd/Makefile.inc (original)
+++ freebsd/trunk/freebsd/Makefile.inc Wed Sep 1 00:41:32 2010
@@ -8,7 +8,11 @@
#CFLAGS+= -DINVARIANT_SUPPORT -DINVARIANTS -DDIAGNOSTIC
CP?= cp
+.if defined(NO_FETCH)
+FETCH?= echo Skipping fetch
+.else
FETCH?= fetch
+.endif
MKDIR?= mkdir -p
INSTALL_DATA?= ${INSTALL} -m ${SHAREMODE} -o ${SHAREOWN} -g ${SHAREGRP} -c
TAR?= tar
More information about the svn-commits
mailing list