diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-04-01 13:02:55 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-04-01 13:02:55 +0200 |
commit | e68925c2b59e54eac8db9b87b1e71bd0fd86530d (patch) | |
tree | eb566c14ac738cc761b73265e1398462f979f350 /src/auditordb | |
parent | 2805413486701578c642a24faa1a0c698f8f3bd5 (diff) |
still debugging templating tests
Diffstat (limited to 'src/auditordb')
-rw-r--r-- | src/auditordb/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auditordb/Makefile.am b/src/auditordb/Makefile.am index 3e7d83d09..c0282e9c9 100644 --- a/src/auditordb/Makefile.am +++ b/src/auditordb/Makefile.am @@ -31,12 +31,12 @@ CLEANFILES = \ auditor-0002.sql procedures.sql: procedures.sql.in auditor_do_*.sql - chmod +w $@ || true + chmod +w $@ 2> /dev/null || true gcc -E -P -undef - < procedures.sql.in 2>/dev/null | sed -e "s/--.*//" | awk 'NF' - >$@ chmod ugo-w $@ auditor-0002.sql: auditor-0002.sql.in 0002-*.sql - chmod +w $@ || true + chmod +w $@ 2> /dev/null || true gcc -E -P -undef - < auditor-0002.sql.in 2>/dev/null | sed -e "s/--.*//" | awk 'NF' - >$@ chmod ugo-w $@ |