[asterisk-commits] seanbright: branch 1.6.0 r220101 - in /branches/1.6.0: ./ build_tools/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Sep 24 09:49:36 CDT 2009


Author: seanbright
Date: Thu Sep 24 09:49:32 2009
New Revision: 220101

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=220101
Log:
Merged revisions 220100 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
  r220100 | seanbright | 2009-09-24 10:44:08 -0400 (Thu, 24 Sep 2009) | 9 lines
  
  Merged revisions 220099 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r220099 | seanbright | 2009-09-24 10:41:57 -0400 (Thu, 24 Sep 2009) | 2 lines
    
    Remove the remaining bashisms in the Makefile/mkpkgconfig
  ........
................

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/Makefile
    branches/1.6.0/build_tools/mkpkgconfig

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.0/Makefile?view=diff&rev=220101&r1=220100&r2=220101
==============================================================================
--- branches/1.6.0/Makefile (original)
+++ branches/1.6.0/Makefile Thu Sep 24 09:49:32 2009
@@ -461,7 +461,9 @@
 	rm -f build_tools/menuselect-deps
 
 datafiles: _all
-	if [ x`$(ID) -un` = xroot ]; then CFLAGS="$(_ASTCFLAGS) $(ASTCFLAGS)" bash build_tools/mkpkgconfig $(DESTDIR)/usr/lib/pkgconfig; fi
+	if [ `$(ID) -u` = 0 ]; then \
+		CFLAGS="$(_ASTCFLAGS) $(ASTCFLAGS)" build_tools/mkpkgconfig $(DESTDIR)/usr/lib/pkgconfig; \
+	fi
 # Should static HTTP be installed during make samples or even with its own target ala
 # webvoicemail?  There are portions here that *could* be customized but might also be
 # improved a lot.  I'll put it here for now.

Modified: branches/1.6.0/build_tools/mkpkgconfig
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.0/build_tools/mkpkgconfig?view=diff&rev=220101&r1=220100&r2=220101
==============================================================================
--- branches/1.6.0/build_tools/mkpkgconfig (original)
+++ branches/1.6.0/build_tools/mkpkgconfig Thu Sep 24 09:49:32 2009
@@ -14,7 +14,7 @@
 fi
 
 #Solaris (and some others) don't have sed -r.  perl -p is equivalent
-if [[ `echo "xxx" | sed -r 's/x/y/g' 2>/dev/null | ${GREP} -c "yyy"` != 0 ]]; then
+if [ `echo "xxx" | sed -r 's/x/y/g' 2>/dev/null | ${GREP} -c "yyy"` != 0 ]; then
     EXTREGEX="sed -r -e"
 else
     EXTREGEX="perl -pe"




More information about the asterisk-commits mailing list