diff options
author | johans <johans@FreeBSD.org> | 2010-04-02 19:37:14 +0800 |
---|---|---|
committer | johans <johans@FreeBSD.org> | 2010-04-02 19:37:14 +0800 |
commit | 076e7afc85c51eab9020c32b3fee70e52c271858 (patch) | |
tree | bdbcf29c8c22dad3f5fccf558ead169ec2a8248a /devel | |
parent | fe727bddcd3b70c77d47994eb8a1330c841334af (diff) | |
download | freebsd-ports-gnome-076e7afc85c51eab9020c32b3fee70e52c271858.tar.gz freebsd-ports-gnome-076e7afc85c51eab9020c32b3fee70e52c271858.tar.zst freebsd-ports-gnome-076e7afc85c51eab9020c32b3fee70e52c271858.zip |
Fix installation on FreeBSD 6.x which doesn't have 'cp -a'
Reported by: pointyhat via erwin
Diffstat (limited to 'devel')
-rw-r--r-- | devel/gnulib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/gnulib/Makefile b/devel/gnulib/Makefile index 62958bcc52a3..9d4697404162 100644 --- a/devel/gnulib/Makefile +++ b/devel/gnulib/Makefile @@ -43,7 +43,7 @@ do-install: cd ${PREFIX}/bin && ${LN} -s ${DATADIR}/$$p;\ done cd ${WRKSRC} && \ - ${CP} -a build-aux config doc lib m4 modules tests ${DATADIR}/ + ${CP} -Rp build-aux config doc lib m4 modules tests ${DATADIR}/ ${INSTALL_DATA} ${WRKSRC}/doc/gnulib.info ${PREFIX}/${INFO_PATH} .ifndef NOPORTDOCS ${MKDIR} ${DOCSDIR} |