aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Alonso Cardenas Marquez <acm@FreeBSD.org>2022-11-15 23:51:41 +0000
committerJose Alonso Cardenas Marquez <acm@FreeBSD.org>2022-11-15 23:51:41 +0000
commit36a871b3bb9d6e490efaf0956d9fca5fb496f290 (patch)
treeefdb069b6491a716e648114b89b467e19ae84f9d
parent3bb44653eca53f297a04add589dc76f7b5978582 (diff)
downloadports-36a871b3bb9d6e490efaf0956d9fca5fb496f290.tar.gz
ports-36a871b3bb9d6e490efaf0956d9fca5fb496f290.zip
devel/dub: Remove obsolete patch file
-rw-r--r--devel/dub/files/patch-build.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/devel/dub/files/patch-build.sh b/devel/dub/files/patch-build.sh
deleted file mode 100644
index 10c9c43d79fa..000000000000
--- a/devel/dub/files/patch-build.sh
+++ /dev/null
@@ -1,27 +0,0 @@
---- build.sh.orig 2019-03-01 15:41:12.000000000 +0000
-+++ build.sh 2019-03-06 05:49:55.312072000 +0000
-@@ -1,4 +1,4 @@
--#!/usr/bin/env bash
-+#!/bin/sh
- set -e
-
- if [ "$DMD" = "" ]; then
-@@ -41,9 +41,6 @@
- LIBS=`echo "$LIBS" | sed 's/^-L/-L-L/; s/ -L/ -L-L/g; s/^-l/-L-l/; s/ -l/ -L-l/g'`
- fi
-
--if [ "$GITVER" = "" ]; then
-- GITVER=$(git describe) || echo "Could not determine a version with git."
--fi
- if [ "$GITVER" != "" ]; then
- echo Generating version file...
- echo "module dub.version_;" > source/dub/version_.d
-@@ -56,7 +53,7 @@
- MACOSX_DEPLOYMENT_TARGET=10.8
-
- echo Running $DMD...
--$DMD -ofbin/dub -g -O -w -version=DubUseCurl -version=DubApplication -Isource $* $LIBS @build-files.txt
-+$DMD -ofbin/dub -O -w -version=DubUseCurl -version=DubApplication -Isource $* $LIBS @build-files.txt
- bin/dub --version
- echo DUB has been built as bin/dub.
- echo