Skip to content

Commit 3173e6d

Browse files
dkorpelthewilsonator
authored andcommitted
Remove copying of now deleted samples folder
1 parent 9428a5d commit 3173e6d

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

create_dmd_release/create_dmd_release.d

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,6 @@ void createRelease(string branch)
461461
( a.endsWith(".html") || a.startsWith("css/", "images/", "js/") );
462462
// copy docs from linux build
463463
copyDir(origDir~"/docs", releaseDir~"/dmd2/html/d", a => dlangFilter(a));
464-
copyDirVersioned(cloneDir~"/dmd/compiler", "samples", releaseDir~"/dmd2/samples/d");
465464
version (Windows) {} else
466465
{
467466
copyDirVersioned(cloneDir~"/tools", "man", releaseDir~"/dmd2/man");

linux/dmd_deb.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,8 @@ else
213213
rm -rf usr/include/dmd/phobos/etc/c/zlib
214214

215215

216-
# install samples and HTML
216+
# install HTML
217217
mkdir -p usr/share/dmd/
218-
cp -Rf ../$UNZIPDIR/samples/ usr/share/dmd
219218
cp -Rf ../$UNZIPDIR/html/ usr/share/dmd
220219
# create *.html symblinks to avoid local broken links
221220
for F in $(find usr/share/dmd/html/ -iname "*.html")

linux/dmd_rpm.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,8 @@ do
201201
rm -rf usr/include/dmd/phobos/etc/c/zlib
202202

203203

204-
# install samples and HTML
204+
# install HTML
205205
mkdir -p usr/share/dmd/
206-
cp -Rf ../$UNZIPDIR/samples/ usr/share/dmd
207206
cp -Rf ../$UNZIPDIR/html/ usr/share/dmd
208207

209208

@@ -244,7 +243,7 @@ do
244243
;
245244
; The special name %@P% is replaced with the path to this file
246245
;
247-
246+
248247
[Environment32]
249248
DFLAGS=-I/usr/include/dmd/phobos -I/usr/include/dmd/druntime/import -L-L/usr/lib -L--export-dynamic -fPIC
250249
' | sed 's/^\t\t//' > etc/dmd.conf

osx/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dmd.${VERSION}.dmg: dmd.${VERSION}.osx.zip
3131
rm -rf dmd
3232
mkdir -p dmd
3333
unzip -q dmd.${VERSION}.osx.zip -d dmd/
34-
mv $(addprefix dmd/dmd2/,html license.txt man README.TXT samples src osx/bin osx/lib) dmd/
34+
mv $(addprefix dmd/dmd2/,html license.txt man README.TXT src osx/bin osx/lib) dmd/
3535
rm -rf dmd/dmd2/
3636
cp dmd.conf dmd/bin/dmd.conf
3737
rm -rf dmg/

0 commit comments

Comments
 (0)