Skip to content
Snippets Groups Projects
Commit 904a9754 authored by rtoy's avatar rtoy
Browse files

Only run psset if psset is available. Otherwise, just copy the file.

(In case you don't have psset.)
parent 4ece2b2c
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ all: cmu-user.ps
# convert the Postscript file to duplex (will print double-sided if
# the printer supports it)
%.ps : %.ps1
psset -d -o $@ $<
if [ -x psset ]; then psset -d -o $@ $<; else cp $< $@; fi
# Tar up the html files
cmu-user-html.tgz : cmu-user.html
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment