mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
4cd1769255
ELF building fix. Many part of fix from editors/emacs. PR: 9451 Submitted by: maintainer
11 lines
157 B
Bash
11 lines
157 B
Bash
#!/bin/sh
|
|
if [ -d /var/run/emacs/lock ]
|
|
then
|
|
rm -f /var/run/emacs/lock/*
|
|
else
|
|
mkdir -p /var/run/emacs/lock
|
|
fi
|
|
chmod 1777 /var/run/emacs/lock
|
|
exit 0
|
|
|