Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
59336f43
Commit
59336f43
authored
Aug 15, 2002
by
Per Cederqvist
Browse files
(.texi.notab): Use $(AWK), not gawk. At least some other awk
implementations supports this script.
parent
43b8e897
Changes
1
Hide whitespace changes
Inline
Side-by-side
doc/Makefile.am
View file @
59336f43
# $Id: Makefile.am,v 1.4
3
2002/08/1
1 16:14:36
ceder Exp $
# $Id: Makefile.am,v 1.4
4
2002/08/1
5 08:47:53
ceder Exp $
# Copyright (C) 1998-1999, 2001-2002 Lysator Academic Computer Association.
#
# This file is part of the LysKOM server.
...
...
@@ -90,7 +90,7 @@ SUFFIXES = .texi .notab
## ugly. Ban tabs.
$(RM)
$@
if
grep
-n
' '
$<
/dev/null
;
then
echo
tabs detected
;
exit
1
;
fi
gawk
'length($0) > 79 {print FILENAME ":" NR ": too long line"; e=1}
\
$(AWK)
'length($0) > 79 {print FILENAME ":" NR ": too long line"; e=1}\
END {exit(e)}'
$<
echo
no tabs found
>
$@
...
...
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