mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-18 17:25:24 +01:00
Merge pull request #179 from stikonas/mes_ppsyntax
Remove pregenerated files (ppsyntax) in mes.
This commit is contained in:
commit
0b645dfc7e
2 changed files with 5 additions and 2 deletions
|
|
@ -131,9 +131,9 @@ this script the next time")
|
||||||
else:
|
else:
|
||||||
raise TypeError("url must be either a string or a list of strings")
|
raise TypeError("url must be either a string or a list of strings")
|
||||||
# Install base files
|
# Install base files
|
||||||
for i, _ in enumerate(urls):
|
for i, uri in enumerate(urls):
|
||||||
# Download files into cache directory
|
# Download files into cache directory
|
||||||
self.download_file(urls[i], outputs[i])
|
self.download_file(uri, outputs[i])
|
||||||
|
|
||||||
def make_initramfs(self):
|
def make_initramfs(self):
|
||||||
"""Package binary bootstrap seeds and sources into initramfs."""
|
"""Package binary bootstrap seeds and sources into initramfs."""
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,9 @@ cp ../files/config.h ${MES_PREFIX}/include/mes
|
||||||
|
|
||||||
cd ${MES_PREFIX}
|
cd ${MES_PREFIX}
|
||||||
|
|
||||||
|
# Remove pregenerated files
|
||||||
|
rm mes/module/mes/psyntax.pp mes/module/mes/psyntax.pp.header
|
||||||
|
|
||||||
# These files are symlinked in the repo
|
# These files are symlinked in the repo
|
||||||
cp mes/module/srfi/srfi-9-struct.mes mes/module/srfi/srfi-9.mes
|
cp mes/module/srfi/srfi-9-struct.mes mes/module/srfi/srfi-9.mes
|
||||||
cp mes/module/srfi/srfi-9/gnu-struct.mes mes/module/srfi/srfi-9/gnu.mes
|
cp mes/module/srfi/srfi-9/gnu-struct.mes mes/module/srfi/srfi-9/gnu.mes
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue