diff options
author | zeising <zeising@FreeBSD.org> | 2012-09-13 18:35:11 +0800 |
---|---|---|
committer | zeising <zeising@FreeBSD.org> | 2012-09-13 18:35:11 +0800 |
commit | 9d39e86479dabb4af7d3440f6322cae1fcefcd89 (patch) | |
tree | fcec2986866767afb698929ebc7a33d8875bd818 /misc/gwhich | |
parent | 685d69eeb0d9e77ffe06d3ac798d214329594006 (diff) | |
download | freebsd-ports-gnome-9d39e86479dabb4af7d3440f6322cae1fcefcd89.tar.gz freebsd-ports-gnome-9d39e86479dabb4af7d3440f6322cae1fcefcd89.tar.zst freebsd-ports-gnome-9d39e86479dabb4af7d3440f6322cae1fcefcd89.zip |
Fix build with clang.
Approved by: kwm (mentor)
Diffstat (limited to 'misc/gwhich')
-rw-r--r-- | misc/gwhich/files/patch-depcomp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/gwhich/files/patch-depcomp b/misc/gwhich/files/patch-depcomp new file mode 100644 index 000000000000..0ee45740750b --- /dev/null +++ b/misc/gwhich/files/patch-depcomp @@ -0,0 +1,11 @@ +--- depcomp.orig 2012-09-11 08:57:17.000000000 +0200 ++++ depcomp 2012-09-11 08:57:24.000000000 +0200 +@@ -98,7 +98,7 @@ + done + + # Generate dependency file. +- "$@" -MT "$object" -M -MF "$tmpdepfile" ++ "$@" -MT "$object" -MD -MF "$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else |