1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-05 08:10:15 +02:00

build: fix make dist failure

* src/local.mk: s/crc.h/cksum_crc.h/.
Reported by Bruno Haible.
This commit is contained in:
Pádraig Brady
2025-11-17 19:57:16 +00:00
parent eebe2abbb6
commit 386cc5e4a7
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -14,8 +14,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
#ifndef __CKSUM_H__
# define __CKSUM_H__
#ifndef __CKSUM_CRC_H__
# define __CKSUM_CRC_H__
# include <stdint.h>
# include <stdio.h>
+1 -1
View File
@@ -451,7 +451,7 @@ src_b2sum_SOURCES = src/cksum.c \
src/blake2/b2sum.c src/blake2/b2sum.h
src_cksum_SOURCES = $(src_b2sum_SOURCES) src/sum.c src/sum.h \
src/cksum_crc.c src/crc.h src/crctab.c
src/cksum_crc.c src/cksum_crc.h src/crctab.c
src_cksum_CPPFLAGS = -DHASH_ALGO_CKSUM=1 -DHAVE_CONFIG_H $(AM_CPPFLAGS)
if USE_AVX512_CRC32