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:
Pierre Labastie 2013-03-27 14:39:06 +00:00
parent 7d109d45f2
commit 8418e9b896

View file

@ -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