Update of /cvsroot/fink/experimental/thesin
In directory vz-cvs-3.sog:/tmp/cvs-serv15897

Modified Files:
        depcheck 
Log Message:
Oops commited the wrong version, this is the working version

Index: depcheck
===================================================================
RCS file: /cvsroot/fink/experimental/thesin/depcheck,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- depcheck    16 Jul 2012 21:00:35 -0000      1.1
+++ depcheck    17 Jul 2012 19:33:41 -0000      1.2
@@ -15,7 +15,7 @@
 if [[ "${is_dir}" == "YES" ]]; then
   files="find ${1} -type f"
 else
-  is_installed=`/sw/bin/dpkg -s ${1} 2>1 | grep 'ok installed' | perl -pi -e 
's,^.+ok installed$,INSTALLED,g'`
+  is_installed=`/sw/bin/dpkg -s ${1} 2>&1 | grep 'ok installed' | perl -pi -e 
's,^.+ok installed$,INSTALLED,g'`
   if [[ "${is_installed}" != "INSTALLED" ]]; then 
     /bin/echo "Package '${1}' not installed, can not check deps."
     exit 1
@@ -26,7 +26,7 @@
 
 /bin/echo -n "Gathering fink depends... "
 fink_deps=''
-fink_deps=`${files} | xargs /usr/bin/file -h | grep 'Mach-O' | cut -f 1 -d ':' 
| xargs otool -L | grep version | sort | uniq | cut -f 1 -d ' ' | xargs 
${FINK_PATH}/bin/dpkg -S 2>1 | grep -v 'not found' | grep -v 'no path found 
matching pattern' | cut -f 1 -d ':' | sort | uniq`
+fink_deps=`${files} | xargs /usr/bin/file -h | grep 'Mach-O' | cut -f 1 -d ':' 
| xargs otool -L | grep version | sort | uniq | cut -f 1 -d ' ' | xargs 
${FINK_PATH}/bin/dpkg -S 2>&1 | grep -v 'not found' | grep -v 'no path found 
matching pattern' | cut -f 1 -d ':' | sort | uniq`
 /bin/echo "Done"
 
 /bin/echo -n "Gathering X11 depends... "


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to