diff options
author | lawrance <lawrance@FreeBSD.org> | 2005-05-28 09:56:11 +0800 |
---|---|---|
committer | lawrance <lawrance@FreeBSD.org> | 2005-05-28 09:56:11 +0800 |
commit | bcca68b851eba9b1b6542282c067d77d9d723aec (patch) | |
tree | bc10543c28bdf15f0e9943dcdf468d777c9081aa /editors | |
parent | d4df7a4088e123e7d4fea06d4e41eb93c5ecba29 (diff) | |
download | freebsd-ports-gnome-bcca68b851eba9b1b6542282c067d77d9d723aec.tar.gz freebsd-ports-gnome-bcca68b851eba9b1b6542282c067d77d9d723aec.tar.zst freebsd-ports-gnome-bcca68b851eba9b1b6542282c067d77d9d723aec.zip |
Fix build on 5.x by making configure see that our mkdir works.
configure (incorrectly) detected that mkdir on 5 was broken, however
the workaround it would try to use was even more broken.
Approved by: clement (mentor, implicit)
Diffstat (limited to 'editors')
-rw-r--r-- | editors/ssed/files/patch-configure | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/ssed/files/patch-configure b/editors/ssed/files/patch-configure new file mode 100644 index 000000000000..718b9d368f7b --- /dev/null +++ b/editors/ssed/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Wed Feb 9 04:31:24 2005 ++++ configure Sat May 28 00:24:01 2005 +@@ -1508,7 +1508,7 @@ + echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} + fi + +-if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then ++if (mkdir -p --version . >/dev/null 2>&1; test ! -d ./--version); then + # We used to keeping the `.' as first argument, in order to + # allow $(mkdir_p) to be used without argument. As in + # $(mkdir_p) $(somedir) |