Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: usbip: userspace: update cleanup.sh

Modify $FILES to account for the new directory layout. Also, sort the
list of files within the variable to make it human-readable.

Signed-off-by: matt mooney <mfm@muteddisk.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

matt mooney and committed by
Greg Kroah-Hartman
9a20542f 20a45d66

+6 -4
+6 -4
drivers/staging/usbip/userspace/cleanup.sh
··· 1 - #!/bin/sh -x 2 - 1 + #!/bin/sh 3 2 4 3 if [ -r Makefile ]; then 5 4 make distclean 6 5 fi 7 6 8 - FILES="configure cscope.out Makefile.in depcomp compile config.guess config.sub config.h.in~ config.log config.status ltmain.sh libtool config.h.in autom4te.cache missing aclocal.m4 install-sh cmd/Makefile.in lib/Makefile.in Makefile lib/Makefile cmd/Makefile" 7 + FILES="aclocal.m4 autom4te.cache compile config.guess config.h.in config.log \ 8 + config.status config.sub configure cscope.out depcomp install-sh \ 9 + libsrc/Makefile libsrc/Makefile.in libtool ltmain.sh Makefile \ 10 + Makefile.in missing src/Makefile src/Makefile.in" 9 11 10 - rm -Rf $FILES 12 + rm -vRf $FILES