diff options
author | Sebastian <sebasjm@gmail.com> | 2022-06-27 16:59:32 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2022-06-27 16:59:32 -0300 |
commit | 6e8be2a0b414500af2a6e92222d5bb1d7d3c63e0 (patch) | |
tree | 660049db020c2ac174524e9aa68632a6d7445da6 /src/exchangedb/Makefile.am | |
parent | 206c7ec705567b3520ab170fd61cd8114adeed89 (diff) |
do not depend on umask bits
Diffstat (limited to 'src/exchangedb/Makefile.am')
-rw-r--r-- | src/exchangedb/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/exchangedb/Makefile.am b/src/exchangedb/Makefile.am index 07c0bf68a..afa2a3ac6 100644 --- a/src/exchangedb/Makefile.am +++ b/src/exchangedb/Makefile.am @@ -50,27 +50,27 @@ CLEANFILES = \ exchange-0001.sql: common-0001.sql exchange-0001-part.sql chmod +w $@ || true cat common-0001.sql exchange-0001-part.sql >$@ - chmod -w $@ + chmod ugo-w $@ shard-0001.sql: common-0001.sql shard-0001-part.sql chmod +w $@ || true cat common-0001.sql shard-0001-part.sql >$@ - chmod -w $@ + chmod ugo-w $@ shard-0000.sql: exchange-0000.sql chmod +w $@ || true cp exchange-0000.sql $@ - chmod -w $@ + chmod ugo-w $@ drop0001.sql: drop-common.sql drop0001-exchange-part.sql chmod +w $@ || true cat drop-common.sql drop0001-exchange-part.sql >$@ - chmod -w $@ + chmod ugo-w $@ shard-drop0001.sql: drop-common.sql drop0001-shard-part.sql chmod +w $@ || true cat drop-common.sql drop0001-shard-part.sql >$@ - chmod -w $@ + chmod ugo-w $@ EXTRA_DIST = \ exchangedb.conf \ |