mirror of
https://git.freebsd.org/ports.git
synced 2025-07-10 13:59:22 -04:00
The CA cert of net/xbone was being overwritten by net/xbone-gui. The previous fix was incomplete. PR: ports/89686 Submitted by: Venkata Pingali <pingali@isi.edu> Approved by: maintainer email is a mailinglist which doesn't accept submissions
13 lines
460 B
Text
13 lines
460 B
Text
--- Makefile.orig Mon Nov 28 11:57:33 2005
|
|
+++ Makefile Mon Nov 28 11:55:50 2005
|
|
@@ -211,8 +211,8 @@
|
|
done
|
|
cp -Rf ${CURDIR}/xb-gui-control.pl ${WWW}/xbone/lib
|
|
for c in `ls ${CACERT}`; do \
|
|
- if( test ! -e ${CERT}/$$c ) then {\
|
|
- cp -f ${CACERT}/$$c ${CERT}; \
|
|
+ if( test ! -e ${CERT}/GUI-$$c ) then {\
|
|
+ cp -f ${CACERT}/$$c ${CERT}/GUI-$$c; \
|
|
} fi; \
|
|
done
|
|
echo ">>> Build & install local Perl modules:" | tee -a ${LOG}
|