Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion create_dmd_release/create_dmd_release.d
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,6 @@ void createRelease(string branch)
( a.endsWith(".html") || a.startsWith("css/", "images/", "js/") );
// copy docs from linux build
copyDir(origDir~"/docs", releaseDir~"/dmd2/html/d", a => dlangFilter(a));
copyDirVersioned(cloneDir~"/dmd/compiler", "samples", releaseDir~"/dmd2/samples/d");
version (Windows) {} else
{
copyDirVersioned(cloneDir~"/tools", "man", releaseDir~"/dmd2/man");
Expand Down
3 changes: 1 addition & 2 deletions linux/dmd_deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,8 @@ else
rm -rf usr/include/dmd/phobos/etc/c/zlib


# install samples and HTML
# install HTML
mkdir -p usr/share/dmd/
cp -Rf ../$UNZIPDIR/samples/ usr/share/dmd
cp -Rf ../$UNZIPDIR/html/ usr/share/dmd
# create *.html symblinks to avoid local broken links
for F in $(find usr/share/dmd/html/ -iname "*.html")
Expand Down
5 changes: 2 additions & 3 deletions linux/dmd_rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,8 @@ do
rm -rf usr/include/dmd/phobos/etc/c/zlib


# install samples and HTML
# install HTML
mkdir -p usr/share/dmd/
cp -Rf ../$UNZIPDIR/samples/ usr/share/dmd
cp -Rf ../$UNZIPDIR/html/ usr/share/dmd


Expand Down Expand Up @@ -244,7 +243,7 @@ do
;
; The special name %@P% is replaced with the path to this file
;

[Environment32]
DFLAGS=-I/usr/include/dmd/phobos -I/usr/include/dmd/druntime/import -L-L/usr/lib -L--export-dynamic -fPIC
' | sed 's/^\t\t//' > etc/dmd.conf
Expand Down
2 changes: 1 addition & 1 deletion osx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dmd.${VERSION}.dmg: dmd.${VERSION}.osx.zip
rm -rf dmd
mkdir -p dmd
unzip -q dmd.${VERSION}.osx.zip -d dmd/
mv $(addprefix dmd/dmd2/,html license.txt man README.TXT samples src osx/bin osx/lib) dmd/
mv $(addprefix dmd/dmd2/,html license.txt man README.TXT src osx/bin osx/lib) dmd/
rm -rf dmd/dmd2/
cp dmd.conf dmd/bin/dmd.conf
rm -rf dmg/
Expand Down
Loading