diff options
author | bouyer <bouyer> | 2002-10-23 17:09:39 +0000 |
---|---|---|
committer | bouyer <bouyer> | 2002-10-23 17:09:39 +0000 |
commit | ed804e8d69c4b91e966a3c2a75fa06637f942a0d (patch) | |
tree | 143aa56ad8a93da8319ac091884885032ed2e90a /x11/gnome-libs/Makefile | |
parent | 6ab4b587aa683cee0d2cc4844051f44d4a3c19b6 (diff) | |
download | pkgsrc-ed804e8d69c4b91e966a3c2a75fa06637f942a0d.tar.gz |
test -e doesn't work on solaris, use test -f
Diffstat (limited to 'x11/gnome-libs/Makefile')
-rw-r--r-- | x11/gnome-libs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/gnome-libs/Makefile b/x11/gnome-libs/Makefile index 85f7a1137b0..cdcf4c9e71e 100644 --- a/x11/gnome-libs/Makefile +++ b/x11/gnome-libs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.78 2002/10/19 10:55:01 rh Exp $ +# $NetBSD: Makefile,v 1.79 2002/10/23 17:09:39 bouyer Exp $ DISTNAME= gnome-libs-1.4.1.4 PKGREVISION= 1 @@ -50,7 +50,7 @@ post-extract: .for file in gnome-app-helper-convenience-macros.htm \ gnome-app-helper-keybindings-config.htm cd ${WRKSRC}/devel-docs/gnome-dev-info/gnome-dev-info && \ - ( [ -e ${file}l ] || ${MV} ${file} ${file}l ) + ( [ -f ${file}l ] || ${MV} ${file} ${file}l ) .endfor post-patch: |