We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3039b7c + 5f6cc74 commit fbf108fCopy full SHA for fbf108f
tests/Makefile.am
@@ -83,7 +83,7 @@ main_scoped_LDFLAGS = $(LDFLAGS_local)
83
84
big-dynstr.c: main.c
85
cat $< > big-dynstr.c
86
- for i in $$(seq 1 2000); do echo "void f$$i(void) { };"; done >> big-dynstr.c
+ i=1; while [ $$i -le 2000 ]; do echo "void f$$i(void) { };"; i=$$(($$i + 1)); done >> big-dynstr.c
87
88
nodist_big_dynstr_SOURCES = big-dynstr.c
89
big_dynstr_LDADD = -lfoo $(AM_LDADD)
0 commit comments