Since files that are patched in legacy patch files are affected, all patches are regenerated with make makepatch. In order to have makepatch operate on only the patched sources without the result of RE_INPLACE being integrated into the patch files, move the in-place editing of sources from post-patch to pre-build.
14 lines
334 B
C
14 lines
334 B
C
--- src/scan.h.orig 2003-03-30 23:07:10 UTC
|
|
+++ src/scan.h
|
|
@@ -23,8 +23,7 @@
|
|
|
|
#include "mboxgrep.h"
|
|
|
|
-void scan_mailbox (char path[]);
|
|
-void recursive_scan (char path[]);
|
|
-int md5_check_message (char *body, checksum_t *chksum);
|
|
+void scan_mailbox(const char path[]);
|
|
+void recursive_scan(const char path[]);
|
|
|
|
#endif /* SCAN_H */
|