Rebuild false.c in coreutils 5.

This was spotted in #176.

Note that coreutils 8.32 does not need to rebuild false.c as it
implements it via compile-time #defines.
This commit is contained in:
Andrius Štikonas 2022-06-14 22:09:07 +01:00
parent b2027df490
commit 119c96b9da
4 changed files with 20 additions and 0 deletions

View File

@ -24,6 +24,9 @@ cp lib/ftw_.h lib/ftw.h
cp lib/search_.h lib/search.h
catm config.h
# We will rebuild it
rm src/false.c
patch -Np0 -i ../../patches/modechange.patch
patch -Np0 -i ../../patches/mbstate.patch
patch -Np0 -i ../../patches/ls-strcmp.patch

View File

@ -12,6 +12,9 @@ src_prepare() {
cp lib/search_.h lib/search.h
touch config.h
# Rebuild pregenerated file
rm -f src/false.c
# Bison pre-generated file
rm lib/getdate.c

View File

@ -86,6 +86,13 @@ LIB_SRC = acl posixtm posixver strftime getopt getopt1 hash hash-pjw addext argm
LIB_OBJECTS = $(addprefix $(LIB_DIR)/, $(addsuffix .o, $(LIB_SRC)))
$(SRC_DIR)/false.c: $(SRC_DIR)/true.c
cp $< $@
sed -i -e s/true/false/g \
-e s/success/failure/g \
-e 's/(EXIT_SUCCESS)/(EXIT_FAILURE)/g' \
$@
$(LIB_DIR)/libfettish.a: $(LIB_OBJECTS)
$(AR) cr $@ $^

View File

@ -96,6 +96,13 @@ LIB_SRC = acl alloca posixtm posixver strftime getopt getopt1 hash hash-pjw adde
LIB_OBJECTS = $(addprefix $(LIB_DIR)/, $(addsuffix .o, $(LIB_SRC)))
$(SRC_DIR)/false.c: $(SRC_DIR)/true.c
cp $< $@
sed -i -e s/true/false/g \
-e s/success/failure/g \
-e 's/(EXIT_SUCCESS)/(EXIT_FAILURE)/g' \
$@
$(LIB_DIR)/libfettish.a: $(LIB_OBJECTS)
$(AR) cr $@ $^