diff options
author | lloyd <[email protected]> | 2010-07-09 16:54:47 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-07-09 16:54:47 +0000 |
commit | a9fd613ce085130824aefc0c439922aced282f91 (patch) | |
tree | 9ffc359eddca822c94ca964989f9ab8b83bd5b93 | |
parent | f9162c355d3cee11be911c4cf469044b5c3c4699 (diff) |
Delete os defaults file - only used by Perl
-rwxr-xr-x | configure.py | 3 | ||||
-rw-r--r-- | src/build-data/os/defaults.txt | 19 |
2 files changed, 0 insertions, 22 deletions
diff --git a/configure.py b/configure.py index eb011dac2..b07e42fbe 100755 --- a/configure.py +++ b/configure.py @@ -1194,9 +1194,6 @@ def load_info_files(options): ccinfo = dict([(form_name(info), CompilerInfo(info)) for info in list_files_in_build_data('cc')]) - if 'defaults' in osinfo: - del osinfo['defaults'] # FIXME (remove the file) - return (modules, archinfo, ccinfo, osinfo) """ diff --git a/src/build-data/os/defaults.txt b/src/build-data/os/defaults.txt deleted file mode 100644 index 5648643a9..000000000 --- a/src/build-data/os/defaults.txt +++ /dev/null @@ -1,19 +0,0 @@ -# Defaults are for a Unix box, since that's what most of OS variants are. It -# would be nice to have generic 'windows', 'beos', 'unix', etc targets to -# handle defaults for those classes of OSes, though Unix is by far the most -# varied/fragmented - -obj_suffix o -so_suffix so -static_suffix a - -ar_command "ar crs" -ar_needs_ranlib no - -install_root /usr/local -header_dir include -lib_dir lib -doc_dir share/doc - -install_cmd_data "install -m 644" -install_cmd_exec "install -m 755" |