Skip to content

Commit 691ed3b

Browse files
author
brian
committed
Apply path matching only at the beginning of the path, like the CMSSW implementation.
git-svn-id: svn://t2.unl.edu/brian/XrdCmsTfc@4458 1fda6f16-4416-0410-bfd6-867a04880151
1 parent 4b3bcc4 commit 691ed3b

File tree

5 files changed

+3676
-2954
lines changed

5 files changed

+3676
-2954
lines changed

Makefile.in

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ EGREP = @EGREP@
130130
EXEEXT = @EXEEXT@
131131
F77 = @F77@
132132
FFLAGS = @FFLAGS@
133+
GREP = @GREP@
133134
INSTALL_DATA = @INSTALL_DATA@
134135
INSTALL_PROGRAM = @INSTALL_PROGRAM@
135136
INSTALL_SCRIPT = @INSTALL_SCRIPT@
@@ -157,12 +158,9 @@ STRIP = @STRIP@
157158
VERSION = @VERSION@
158159
XROOTD_INCDIR = @XROOTD_INCDIR@
159160
XROOTD_LIBDIR = @XROOTD_LIBDIR@
160-
ac_ct_AR = @ac_ct_AR@
161161
ac_ct_CC = @ac_ct_CC@
162162
ac_ct_CXX = @ac_ct_CXX@
163163
ac_ct_F77 = @ac_ct_F77@
164-
ac_ct_RANLIB = @ac_ct_RANLIB@
165-
ac_ct_STRIP = @ac_ct_STRIP@
166164
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
167165
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
168166
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
@@ -179,23 +177,30 @@ build_cpu = @build_cpu@
179177
build_os = @build_os@
180178
build_vendor = @build_vendor@
181179
datadir = @datadir@
180+
datarootdir = @datarootdir@
181+
docdir = @docdir@
182+
dvidir = @dvidir@
182183
exec_prefix = @exec_prefix@
183184
host = @host@
184185
host_alias = @host_alias@
185186
host_cpu = @host_cpu@
186187
host_os = @host_os@
187188
host_vendor = @host_vendor@
189+
htmldir = @htmldir@
188190
includedir = @includedir@
189191
infodir = @infodir@
190192
install_sh = @install_sh@
191193
libdir = @libdir@
192194
libexecdir = @libexecdir@
195+
localedir = @localedir@
193196
localstatedir = @localstatedir@
194197
mandir = @mandir@
195198
mkdir_p = @mkdir_p@
196199
oldincludedir = @oldincludedir@
200+
pdfdir = @pdfdir@
197201
prefix = @prefix@
198202
program_transform_name = @program_transform_name@
203+
psdir = @psdir@
199204
sbindir = @sbindir@
200205
sharedstatedir = @sharedstatedir@
201206
sysconfdir = @sysconfdir@
@@ -417,7 +422,7 @@ distdir: $(DISTFILES)
417422
|| exit 1; \
418423
fi; \
419424
done
420-
-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
425+
-find $(distdir) -type d ! -perm -755 -exec chmod a+rwx,go+rx {} \; -o \
421426
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
422427
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
423428
! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \

0 commit comments

Comments
 (0)