Skip to content

Commit

Permalink
"*.c" is not a binary file type; removing it so that kernel does not …
Browse files Browse the repository at this point in the history
…get considered a binary app
  • Loading branch information
dizzyd committed Aug 11, 2008
1 parent 689816f commit 4f41195
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/epkg/src/epkg_validation.erl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
%%--------------------------------------------------------------------
%% Macros
%%--------------------------------------------------------------------
-define(BINARY_FILE_EXTENSIONS, ["cmx","py","c","bat","exe","so"]).
-define(BINARY_FILE_EXTENSIONS, ["cmx","py","bat","exe","so"]).

%% List of regexs that are compared against the output of the "file" command to determine if a
%% given file is a "binary" file or not
Expand Down
2 changes: 1 addition & 1 deletion scripts/faxien-auto-publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ def get_published_apps():
return apps


BINARY_FILE_EXTENSIONS = ["cmx", "py", "c", "bat", "exe", "so"]
BINARY_FILE_EXTENSIONS = ["cmx", "py", "bat", "exe", "so"]

def is_binary_lib(app_dir):
"""Is the application binary? (i.e., has hardware specific code).
Expand Down

0 comments on commit 4f41195

Please sign in to comment.