• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision59110dd23b9685bf429794b6d03be0b107954677 (tree)
Time2021-12-22 15:15:34
Authormatsuand <30614168+matsuand@user...>
Commitermatsuand

Log Message

[BLFS] Modify cracklib.

Change Summary

Incremental Difference

--- a/BLFS/cracklib.sh
+++ b/BLFS/cracklib.sh
@@ -26,6 +26,7 @@ cd $TARGETDIR
2626 sed -i '/skipping/d' util/packer.c
2727
2828 Configuring
29+PYTHON=python3 CPPFLAGS=-I/usr/include/python3.9 \
2930 ./configure --prefix=/usr \
3031 --disable-static \
3132 --with-default-dict=/lib/cracklib/pw_dict \
@@ -40,31 +41,26 @@ porg -lp $TARGET "make install" \
4041 1> $LOG/$TARGET.3_install.log 2>&1 || exit 1
4142
4243 porg -lp+ $TARGET "\
43-mv -v /usr/lib/libcrack.so.* /lib" \
44- 1>> $LOG/$TARGET.3_install.log 2>&1
45-porg -lp+ $TARGET "\
46-ln -sfv ../../lib/$(readlink /usr/lib/libcrack.so) /usr/lib/libcrack.so" \
47- 1>> $LOG/$TARGET.3_install.log 2>&1
48-
49-porg -lp+ $TARGET "\
5044 install -v -m644 -D $DLD/cracklib-words-$VER.bz2 \
5145 /usr/share/dict/cracklib-words.bz2" \
5246 1>> $LOG/$TARGET.3_install.log 2>&1
5347
5448 porg -lp+ $TARGET "\
55-gunzip -v /usr/share/dict/cracklib-words.bz2" \
49+bunzip2 -v /usr/share/dict/cracklib-words.bz2" \
5650 1>> $LOG/$TARGET.3_install.log 2>&1
57-porg -lp+ $TARGET 'ln -v -s cracklib-words /usr/share/dict/words' \
51+porg -lp+ $TARGET "\
52+ln -v -s cracklib-words /usr/share/dict/words" \
5853 1>> $LOG/$TARGET.3_install.log 2>&1
5954
6055 echo $(hostname) >>/usr/share/dict/cracklib-extra-words
6156 porg -lp+ $TARGET "cp $DLD/japanese /usr/share/dict" \
6257 1>> $LOG/$TARGET.3_install.log 2>&1
63-porg -lp+ $TARGET 'install -v -m755 -d /lib/cracklib' \
64- 1>> $LOG/$TARGET.3_install.log 2>&1
65-porg -lp+ $TARGET 'create-cracklib-dict /usr/share/dict/cracklib-words \
66- /usr/share/dict/cracklib-extra-words \
67- /usr/share/dict/japanese' \
58+install -v -m755 -d /usr/lib/cracklib
59+porg -lp+ $TARGET "\
60+create-cracklib-dict \
61+ /usr/share/dict/cracklib-words \
62+ /usr/share/dict/cracklib-extra-words \
63+ /usr/share/dict/japanese" \
6864 1>> $LOG/$TARGET.3_install.log 2>&1
6965
7066 TimeEnd