diff options
author | Alexis Ballier <aballier@gentoo.org> | 2017-01-20 13:37:21 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2017-01-20 13:37:21 +0100 |
commit | eb1a6541afc952102f026da78eaa9edb525938a1 (patch) | |
tree | e91dfe72caf9f21b2168889727f4616872aefeec /scripts/texlive | |
parent | block dev-texlive/texlive-langnorwegian from lang-european (diff) | |
download | aballier-eb1a6541afc952102f026da78eaa9edb525938a1.tar.gz aballier-eb1a6541afc952102f026da78eaa9edb525938a1.tar.bz2 aballier-eb1a6541afc952102f026da78eaa9edb525938a1.zip |
ignore comments in tlpobjs
Diffstat (limited to 'scripts/texlive')
-rw-r--r-- | scripts/texlive/tlpsrc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/texlive/tlpsrc/Makefile b/scripts/texlive/tlpsrc/Makefile index ec397d9..b2c637b 100644 --- a/scripts/texlive/tlpsrc/Makefile +++ b/scripts/texlive/tlpsrc/Makefile @@ -20,7 +20,7 @@ unpacked : $(FULLDESC:%=%.unpacked) -sh $(@:%.base=%.baseexec) $@ %.list: %.base - grep "depend " $< | awk '{print $$2}' | grep -v "collection" | tr '\n' ' ' > $@ + grep -v "^#" $< | grep "depend " | awk '{print $$2}' | grep -v "collection" | tr '\n' ' ' > $@ -sh $(@:%.list=%.extraexec) $@ echo "$(@:texlive-%.list=collection-%)" >> $@ |