From 23a75f76eb39cc24cc5fc046ba7ae36a3221c320 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 31 Oct 2007 00:12:18 +0000 Subject: [PATCH] Replace "tail -n +2" with "sed 1d", as Solaris doesn't understand the former --- docs/man/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/man/Makefile b/docs/man/Makefile index 155767e..7fa112d 100644 --- a/docs/man/Makefile +++ b/docs/man/Makefile @@ -33,7 +33,8 @@ flags.xml: ../users_guide/flags.xml echo " \ \ ]>" >> $@ - tail -n +2 $< >> $@ + # "sed 1d" == "tail -n +2", but Solaris apparently rejects the latter + sed 1d $< >> $@ endif -- 1.7.10.4