mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
unbreak port for -current
Since the `.' seperator has been deprecated for a while now, the chown command fails - at least under -current. Changed his patch to patch actually SETUP.in and not the resulting file SETUP after running configure. Submitted by: "Niels Chr. Bank-Pedersen" <ncbp@bank-pedersen.dk>
This commit is contained in:
parent
a29a5b29b1
commit
705d3b985d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=52380
38
print/apsfilter/files/patch-SETUP.in
Normal file
38
print/apsfilter/files/patch-SETUP.in
Normal file
@ -0,0 +1,38 @@
|
||||
--- SETUP.in.orig Sun Dec 30 00:22:18 2001
|
||||
+++ SETUP.in Sun Dec 30 00:23:48 2001
|
||||
@@ -1299,7 +1299,7 @@
|
||||
if [ "$SMB_PASSWD" ]; then
|
||||
echo "read protect SETUP.cfg, since it contains password..."
|
||||
chmod 600 SETUP.cfg
|
||||
- chown root.$LP_GROUP SETUP.cfg
|
||||
+ chown root:$LP_GROUP SETUP.cfg
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -1434,7 +1434,7 @@
|
||||
# after having set sane defaults, fix permissions
|
||||
echo $n "changing permissions of $APS_BASEDIR... $c"
|
||||
chmod 555 .
|
||||
- chown -R $DIR_OWNER.$DIR_GROUP .
|
||||
+ chown -R $DIR_OWNER:$DIR_GROUP .
|
||||
find . -type d -print | xargs chmod 555
|
||||
find . -type f -print | xargs chmod a+r,a-w
|
||||
echo "done."
|
||||
@@ -1672,7 +1672,7 @@
|
||||
chmod 664 "$SPOOLDIR/lock"
|
||||
|
||||
# set sane permissions for spooldir
|
||||
- chown -R $LP_OWNER.$LP_GROUP "$SPOOLDIR"
|
||||
+ chown -R $LP_OWNER:$LP_GROUP "$SPOOLDIR"
|
||||
|
||||
# samba printer
|
||||
if [ "$INTERFACE" = samba ]; then
|
||||
@@ -1699,7 +1699,7 @@
|
||||
if [ "$SMB_PASSWD" ]; then
|
||||
echo " read protect password information..."
|
||||
chmod 600 smbclient.conf
|
||||
- chown $LP_OWNER.$LP_GROUP smbclient.conf
|
||||
+ chown $LP_OWNER:$LP_GROUP smbclient.conf
|
||||
fi
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user