mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-17 22:11:19 +02:00
17 lines
489 B
Plaintext
17 lines
489 B
Plaintext
|
|
--- ./scripts/xdg-screensaver.orig 2010-06-29 12:36:04.000000000 -0400
|
|
+++ ./scripts/xdg-screensaver 2010-06-29 12:37:22.000000000 -0400
|
|
@@ -355,7 +355,9 @@
|
|
}
|
|
|
|
# Check if we can use "mv -T"
|
|
-if mv -T ... ... 2>&1 | grep '\.\.\.' > /dev/null ; then
|
|
+# FreeBSD cannot, so supress scary messages in the terminal
|
|
+#if mv -T ... ... 2>&1 | grep '\.\.\.' > /dev/null ; then
|
|
+if false ; then
|
|
# We can securely move files in /tmp with mv -T
|
|
DEBUG 1 "mv -T available"
|
|
MV="mv -T"
|
|
|
|
|