This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] One more cygport bug


Hi!

$ cygport <package>.cygport deps

doesn't report the dependencies.

The attached patch fixes this for me.

   Volker

-- 
PGP/GPG key  (ID: 0x9F8A785D)  available  from  wwwkeys.de.pgp.net
key-fingerprint 550D F17E B082 A3E9 F913  9E53 3D35 C9BA 9F8A 785D
--- /usr/bin/cygport	2006-10-19 23:58:07.001000000 -0400
+++ cygport	2006-10-30 09:51:18.125000000 -0500
@@ -1121,7 +1121,7 @@
 	export PATH="${D}/usr/bin:${DEPS_PATH}:${os_path}";
 
 	# Ruby and Apache2 modules should be *.so, nothing else!!!
-	find . -name '*.exe' -o -name '*.dll' -o -name '*.so' \
+	find . \( -name '*.exe' -o -name '*.dll' -o -name '*.so' \) \
 		-exec cygcheck '{}' + | sed -ne '/^  [^ ]/ s,\\,/,gp' | sort -bu | \
 		xargs -r -n1 cygpath -u | xargs -r cygcheck -f | \
 		sed 's!^!  !' | sort -u;

Attachment: signature.asc
Description: OpenPGP digital signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]