mirror of
https://github.com/KeithDHedger/LFSPkgBuilds.git
synced 2025-07-23 00:24:34 +00:00
15 lines
316 B
Bash
Executable File
15 lines
316 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
#©keithhedger Tue 17 Mar 13:49:42 GMT 2015 kdhedger68713@gmail.com
|
|
|
|
if [ -e ./SystemData ];then
|
|
. ./SystemData
|
|
else
|
|
echo "No SystemData file found ..."
|
|
exit 0
|
|
fi
|
|
|
|
while read
|
|
do
|
|
sed -r -i 's/\bBUILD=.*\b/BUILD=${BUILD:-1}/' ${REPLY}
|
|
done < <(find ${LFS}/LFSPkgBuildScripts -iname "*.LFSBuild") |