Skip to content

Commit e9b59d8

Browse files
committed
make_dist_tarball: don't make "o" writable
We only need "ug" writable (so that we can delete stuff at the end). No need to make "o" writable.
1 parent 3ad89f1 commit e9b59d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/dist/make_dist_tarball

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ make_tarball() {
282282
# happened to be in the tree already).
283283
#
284284
echo "*** Removing old generated flex files..."
285-
find . -name \*_lex.c -exec chmod a+rw {} \; -exec rm -f {} \; -print
285+
find . -name \*_lex.c -exec chmod ug+rw {} \; -exec rm -f {} \; -print
286286

287287
#
288288
# make tarball

0 commit comments

Comments
 (0)