Skip to content

Commit 55d9fe6

Browse files
committed
Rename all .d files to .di
This ensures that they're not compiled/linked, as they have no reason to.
1 parent 200c832 commit 55d9fe6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+5
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Generated version file
2-
/source/deimos/openssl/version_.d
2+
/source/deimos/openssl/version_.di
33

44
# DUB artifacts
55
/.dub/

scripts/generate_version.d

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* It is called directly as a `preGenerateCommand` (see dub.sdl).
1515
* To use it with another build system, pass the directory in which to write
16-
* the `version_.d` file as first and only argument. The directory
16+
* the `version_.di` file as first and only argument. The directory
1717
* must exist, this script will not create it.
1818
*/
1919
module generate_version;
@@ -42,14 +42,14 @@ void main(string[] args)
4242
{
4343
assert(args[1].isDir(),
4444
"OpenSSL version detection: Argument '" ~ args[1] ~ "' is not a directory");
45-
target = args[1].buildPath("version_.d");
45+
target = args[1].buildPath("version_.di");
4646
}
4747
else
4848
{
4949
assert(args.length == 1,
5050
"OpenSSL version detection expects only one argument, " ~
51-
"a directory path where to write `version_.d`");
52-
target = TARGET_DIR_PATH.buildPath("version_.d");
51+
"a directory path where to write `version_.di`");
52+
target = TARGET_DIR_PATH.buildPath("version_.di");
5353
}
5454

5555
string opensslVersion;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)