CLFS, trap vim-lang pack, install only on config flag
This commit is contained in:
parent
9c90294d6a
commit
386bc75172
3 changed files with 7 additions and 5 deletions
|
@ -37,7 +37,7 @@ TARGET=
|
||||||
|
|
||||||
#--- Create a minimal boot system 0(chroot)/1(bootmin)
|
#--- Create a minimal boot system 0(chroot)/1(bootmin)
|
||||||
# NOTE: not all combinations are 'bootable' yet.
|
# NOTE: not all combinations are 'bootable' yet.
|
||||||
BOOTMINIMAL=1
|
BOOTMINIMAL=0
|
||||||
|
|
||||||
#--- Location of fstab file (if empty, a template is created)
|
#--- Location of fstab file (if empty, a template is created)
|
||||||
FSTAB=
|
FSTAB=
|
||||||
|
|
|
@ -683,8 +683,10 @@ extract_commands() { #
|
||||||
fileMATCH="/$1"
|
fileMATCH="/$1"
|
||||||
# format.. Filename-Version or FilenameVersion
|
# format.. Filename-Version or FilenameVersion
|
||||||
for aFILE in `grep ${fileMATCH}-*[[:digit:]] packageslist_.wget`; do
|
for aFILE in `grep ${fileMATCH}-*[[:digit:]] packageslist_.wget`; do
|
||||||
# The aFILE%\?* is necessary to strip the "?download" appended to sourceforge files
|
# Block vim-x.x-lang file, will add it later based on config flag
|
||||||
|
if [[ ! "${aFILE}" =~ "vim-$2-lang" ]]; then
|
||||||
echo "$1-version \"$2\"" >> packages
|
echo "$1-version \"$2\"" >> packages
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
#################################
|
#################################
|
||||||
|
|
|
@ -334,5 +334,5 @@ echo "---------------${nl_}"
|
||||||
build_Makefile
|
build_Makefile
|
||||||
echo "---------------${nl_}"
|
echo "---------------${nl_}"
|
||||||
|
|
||||||
#run_make
|
run_make
|
||||||
|
|
||||||
|
|
Reference in a new issue