pkgsrc/graphics/lensfun/patches/patch-ab
2009-07-09 19:44:50 +00:00

19 lines
707 B
Text

$NetBSD: patch-ab,v 1.1.1.1 2009/07/09 19:44:50 drochner Exp $
--- build/mak/host/posix.mak.orig 2008-07-14 21:23:30.000000000 +0200
+++ build/mak/host/posix.mak
@@ -5,12 +5,12 @@ SHELL := /bin/sh
# $1 - file, $2 - target dir, $3 - mode
define SINGLE.INSTALL
if [ ! -d $2 ]; then install -m 0755 -d $2; fi
- if [ -L $1 ]; then cp -d $1 $2$(notdir $1); else install -m $3 $1 $2$(notdir $1); fi
+ if [ -L $1 ]; then cp $1 $2$(notdir $1); else install -m $3 $1 $2$(notdir $1); fi
endef
# $1 - directory, $2 - target dir, $3 - mode for files
define SINGLE.INSTALLDIR
if [ ! -d $2 ]; then install -m 0755 -d $2; fi
- cp -drP $1* $2
+ cp -r $1* $2
find $2 -type f -print0 | xargs -0 chmod $3
endef