File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ errors=$(
126
126
signals=$(
127
127
echo ' #include <signal.h>' | $CC -x c - -E -dM $ccflags |
128
128
awk ' $1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' |
129
- egrep -v ' ( SIGSTKSIZE|SIGSTKSZ|SIGRT) ' |
129
+ grep -v ' SIGSTKSIZE\ |SIGSTKSZ\ |SIGRT' |
130
130
sort
131
131
)
132
132
@@ -136,7 +136,7 @@ echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
136
136
sort > _error.grep
137
137
echo ' #include <signal.h>' | $CC -x c - -E -dM $ccflags |
138
138
awk ' $1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' |
139
- egrep -v ' ( SIGSTKSIZE|SIGSTKSZ|SIGRT) ' |
139
+ grep -v ' SIGSTKSIZE\ |SIGSTKSZ\ |SIGRT' |
140
140
sort > _signal.grep
141
141
142
142
echo ' // mkerrors.sh' " $@ "
Original file line number Diff line number Diff line change @@ -642,7 +642,7 @@ errors=$(
642
642
signals=$(
643
643
echo ' #include <signal.h>' | $CC -x c - -E -dM $ccflags |
644
644
awk ' $1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' |
645
- egrep -v ' ( SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64) ' |
645
+ grep -v ' SIGSTKSIZE\ |SIGSTKSZ\ |SIGRT\ |SIGMAX64' |
646
646
sort
647
647
)
648
648
@@ -652,7 +652,7 @@ echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
652
652
sort > _error.grep
653
653
echo ' #include <signal.h>' | $CC -x c - -E -dM $ccflags |
654
654
awk ' $1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' |
655
- egrep -v ' ( SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64) ' |
655
+ grep -v ' SIGSTKSIZE\ |SIGSTKSZ\ |SIGRT\ |SIGMAX64' |
656
656
sort > _signal.grep
657
657
658
658
echo ' // mkerrors.sh' " $@ "
You can’t perform that action at this time.
0 commit comments