[Glibc-bsd-commits] r1598 - in trunk/posixtestsuite/debian: . patches

Guillem Jover guillem at costa.debian.org
Wed Jun 14 06:07:37 UTC 2006


Author: guillem
Date: 2006-06-14 06:07:34 +0000 (Wed, 14 Jun 2006)
New Revision: 1598

Added:
   trunk/posixtestsuite/debian/patches/00_find_warnings.patch
Modified:
   trunk/posixtestsuite/debian/changelog
Log:
Make find POSIX compliant.


Modified: trunk/posixtestsuite/debian/changelog
===================================================================
--- trunk/posixtestsuite/debian/changelog	2006-06-14 06:06:01 UTC (rev 1597)
+++ trunk/posixtestsuite/debian/changelog	2006-06-14 06:07:34 UTC (rev 1598)
@@ -1,6 +1,7 @@
 posixtestsuite (1.5.1-1) UNRELEASED; urgency=low
 
   * New upstream release.
+    - debian/patches/00_find_warnings.patch: Make find POSIX compliant.
     - Do not leave "sigpause/4.1.test" process running after finishing.
       (Closes: #303365)
   * Upgrade to debhelper compat version 5.

Added: trunk/posixtestsuite/debian/patches/00_find_warnings.patch
===================================================================
--- trunk/posixtestsuite/debian/patches/00_find_warnings.patch	2006-06-14 06:06:01 UTC (rev 1597)
+++ trunk/posixtestsuite/debian/patches/00_find_warnings.patch	2006-06-14 06:07:34 UTC (rev 1598)
@@ -0,0 +1,27 @@
+diff -Naur -x .svn -x CVS posixtestsuite.orig/locate-test posixtestsuite/locate-test
+--- posixtestsuite.orig/locate-test	2005-03-14 15:53:50.000000000 +0200
++++ posixtestsuite/locate-test	2005-11-29 03:48:39.000000000 +0200
+@@ -60,19 +60,19 @@
+           shift;
+           ;;
+       "--fmake")
+-          find functional/ -type f -maxdepth 2 -mindepth 2 -name "Makefile" -exec dirname '{}' ';'
++          find functional/ -maxdepth 2 -mindepth 2 -type f -name "Makefile" -exec dirname '{}' ';'
+           exit 0;
+           ;;
+       "--frun")
+-          find functional/ -type f -maxdepth 2 -mindepth 2 -name "run.sh" -exec dirname '{}' ';' 
++          find functional/ -maxdepth 2 -mindepth 2 -type f -name "run.sh" -exec dirname '{}' ';' 
+           exit 0;
+           ;;
+       "--smake")
+-          find stress/ -type f -maxdepth 2 -mindepth 2 -name "Makefile" -exec dirname '{}' ';'
++          find stress/ -maxdepth 2 -mindepth 2 -type f -name "Makefile" -exec dirname '{}' ';'
+           exit 0;
+           ;;
+       "--srun")
+-          find stress/ -type f -maxdepth 2 -mindepth 2 -name "run.sh" -exec dirname '{}' ';'
++          find stress/ -maxdepth 2 -mindepth 2 -type f -name "run.sh" -exec dirname '{}' ';'
+           exit 0;
+           ;;
+       "--help")




More information about the Glibc-bsd-commits mailing list