Magellan Linux

Annotation of /trunk/busybox/patches/busybox-1.20.2-cp-ignore-onefilesystem.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1854 - (hide annotations) (download)
Wed Jul 25 13:35:11 2012 UTC (11 years, 10 months ago) by niro
File size: 519 byte(s)
-added patch to ignore -x mode of cp
1 niro 1854 diff -Naur busybox-1.20.2/coreutils/cp.c busybox-1.20.2-magellan/coreutils/cp.c
2     --- busybox-1.20.2/coreutils/cp.c 2012-06-26 15:35:45.000000000 +0200
3     +++ busybox-1.20.2-magellan/coreutils/cp.c 2012-07-25 17:30:16.809986645 +0200
4     @@ -80,7 +80,8 @@
5     ;
6     #endif
7     // -v (--verbose) is ignored
8     - flags = getopt32(argv, FILEUTILS_CP_OPTSTR "arPv");
9     + // -x (--one-file-system) is ignored
10     + flags = getopt32(argv, FILEUTILS_CP_OPTSTR "arPvx");
11     /* Options of cp from GNU coreutils 6.10:
12     * -a, --archive
13     * -f, --force