fix "find" calls by adding the current directory - necessary for macos
This commit is contained in:
parent
4f1c4260c8
commit
3ff3d2df77
2 changed files with 5 additions and 5 deletions
6
Makefile
6
Makefile
|
@ -138,9 +138,9 @@ source:
|
||||||
|
|
||||||
release: EXPORT_FILE_SUFFIX := _release
|
release: EXPORT_FILE_SUFFIX := _release
|
||||||
release: doku kopiere_programme
|
release: doku kopiere_programme
|
||||||
find -type f -name \*.html -exec unix2dos '{}' \;
|
find . -type f -name \*.html -exec unix2dos '{}' \;
|
||||||
find -type f -name \*.txt -exec unix2dos '{}' \;
|
find . -type f -name \*.txt -exec unix2dos '{}' \;
|
||||||
find -type f -name \*.css -exec unix2dos '{}' \;
|
find . -type f -name \*.css -exec unix2dos '{}' \;
|
||||||
@echo "Erzeuge iso-Image ..."
|
@echo "Erzeuge iso-Image ..."
|
||||||
@$(ERZEUGE_ISO)
|
@$(ERZEUGE_ISO)
|
||||||
@echo "Erzeuge zip-Archiv ..."
|
@echo "Erzeuge zip-Archiv ..."
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
# validation program
|
# validation program
|
||||||
VALIDATE_BIN := validate
|
VALIDATE_BIN := validate
|
||||||
# our self written documents
|
# our self written documents
|
||||||
LYX_FILES := $(shell find -name *.lyx -type f)
|
LYX_FILES := $(shell find . -name *.lyx -type f)
|
||||||
# the tex output of lyx
|
# the tex output of lyx
|
||||||
TEX_FILES := $(patsubst %.lyx,%.tex,$(LYX_FILES))
|
TEX_FILES := $(patsubst %.lyx,%.tex,$(LYX_FILES))
|
||||||
# output files of lyx that are already processed by mod_html_files.py
|
# output files of lyx that are already processed by mod_html_files.py
|
||||||
EXPORT_DIRS := $(shell for a in $(LYX_FILES); do echo -n "$$a" | sed "s%/\([^/]*\).lyx%/export-%"; echo "$$(basename $${a%.lyx})" ; done)
|
EXPORT_DIRS := $(shell for a in $(LYX_FILES); do echo -n "$$a" | sed "s%/\([^/]*\).lyx%/export-%"; echo "$$(basename $${a%.lyx})" ; done)
|
||||||
# png files (get converted to eps)
|
# png files (get converted to eps)
|
||||||
PNG_FILES := $(shell find -name *.png -type f)
|
PNG_FILES := $(shell find . -name *.png -type f)
|
||||||
# converted eps files
|
# converted eps files
|
||||||
EPS_FILES := $(patsubst %.png,%.eps,$(PNG_FILES))
|
EPS_FILES := $(patsubst %.png,%.eps,$(PNG_FILES))
|
||||||
# menue and footer files
|
# menue and footer files
|
||||||
|
|
Loading…
Add table
Reference in a new issue