mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
145f6cb629
./configure to work.
15 lines
129 B
Bash
Executable file
15 lines
129 B
Bash
Executable file
#!/bin/sh
|
|
if
|
|
test -r $2
|
|
then
|
|
if
|
|
cmp $1 $2 > /dev/null
|
|
then
|
|
echo $2 is unchanged
|
|
rm -f $1
|
|
else
|
|
mv -f $1 $2
|
|
fi
|
|
else
|
|
mv -f $1 $2
|
|
fi
|