mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
Expansion: fix: algo was wrong for wildcard
Hopefully, this is a proper fix. This commit serves mainly to save advancement.
This commit is contained in:
parent
1766e8d1ba
commit
fc12d8e057
5 changed files with 129 additions and 81 deletions
6
Makefile
6
Makefile
|
|
@ -50,6 +50,8 @@ srcs = \
|
|||
src/parser/wordlist/wordlist_copy.c \
|
||||
src/parser/wordlist/wordlist_debug.c \
|
||||
src/parser/wordlist/wordlist_idx.c \
|
||||
src/parser/wordlist/wordlist_quicksort.c \
|
||||
src/parser/wordlist/wordlist_utils.c \
|
||||
src/parser/wordsplit/rule_utils.c \
|
||||
src/parser/wordsplit/tokenizing_1_5.c \
|
||||
src/parser/wordsplit/tokenizing_6_10.c \
|
||||
|
|
@ -59,10 +61,14 @@ srcs = \
|
|||
src/postprocess/redirections/redirection_list.c \
|
||||
src/postprocess/redirections/redirection_parsing.c \
|
||||
src/postprocess/redirections/redirection_type.c \
|
||||
src/subst/path_split.c \
|
||||
src/subst/replace_substr.c \
|
||||
src/subst/simple_filename_exp.c \
|
||||
src/subst/variable_subst.c \
|
||||
src/subst/variable_subst_utils.c \
|
||||
src/subst/wildcard_exp.c \
|
||||
src/subst/wildcard_exp_utils.c \
|
||||
src/subst/wildcard_exp_utils2.c \
|
||||
|
||||
objs = $(srcs:.c=.o)
|
||||
export objs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue