Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
jberryman
GHC
Commits
23a75f76
Commit
23a75f76
authored
Oct 31, 2007
by
Ian Lynagh
Browse files
Replace "tail -n +2" with "sed 1d", as Solaris doesn't understand the former
parent
cf679aa0
Changes
1
Hide whitespace changes
Inline
Side-by-side
docs/man/Makefile
View file @
23a75f76
...
...
@@ -33,7 +33,8 @@ flags.xml: ../users_guide/flags.xml
echo
"<!DOCTYPE sect1 [<!ENTITY ndash
\"
-
\"
>
\
<!ENTITY ldquo
\"\`\"
>
\
<!ENTITY rdquo
\"
'
\"
>]>"
>>
$@
tail
-n
+2
$<
>>
$@
# "sed 1d" == "tail -n +2", but Solaris apparently rejects the latter
sed
1d
$<
>>
$@
endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment