summaryrefslogtreecommitdiff
path: root/graphics/lensfun/patches/patch-ab
blob: 7604a19484118b518dba39e2ae7945dde4ca488e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$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