[asterisk-commits] seanbright: branch 1.4 r220099 - in /branches/1.4: ./ build_tools/

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


Author: seanbright
Date: Thu Sep 24 09:41:57 2009
New Revision: 220099

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=220099
Log:
Remove the remaining bashisms in the Makefile/mkpkgconfig

Modified:
    branches/1.4/Makefile
    branches/1.4/build_tools/mkpkgconfig

Modified: branches/1.4/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/Makefile?view=diff&rev=220099&r1=220098&r2=220099
==============================================================================
--- branches/1.4/Makefile (original)
+++ branches/1.4/Makefile Thu Sep 24 09:41:57 2009
@@ -410,7 +410,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.4/build_tools/mkpkgconfig
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/build_tools/mkpkgconfig?view=diff&rev=220099&r1=220098&r2=220099
==============================================================================
--- branches/1.4/build_tools/mkpkgconfig (original)
+++ branches/1.4/build_tools/mkpkgconfig Thu Sep 24 09:41:57 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