LFS/master.sh:
- Ignore error when useradd does not support "-k /dev/null" (happens at least on Suse) - strip "-libstdc++" from the script name to allow building gcc-libstdc++ with package gcc
This commit is contained in:
parent
7d109d45f2
commit
8418e9b896
1 changed files with 7 additions and 1 deletions
8
Makefile
8
Makefile
|
@ -8,7 +8,13 @@ CONFIG = menu
|
|||
|
||||
all: menuconfig
|
||||
# @clear
|
||||
@`grep RUN_ME configuration | sed -e 's@RUN_ME=\"@@' -e 's@\"@@' `
|
||||
@echo -n "Do you want tu run jhalfs (y)? "
|
||||
@read ANSWER; \
|
||||
if [ x$ANSWER != xn -and x$ANSWER != xno ]; then \
|
||||
`grep RUN_ME configuration | sed -e 's@RUN_ME=\"@@' -e 's@\"@@' `; \
|
||||
else
|
||||
echo Exiting gracefully; \
|
||||
fi
|
||||
|
||||
$(CONFIG)/conf:
|
||||
$(MAKE) -C $(CONFIG) conf
|
||||
|
|
Reference in a new issue