diff options
author | bouyer <bouyer@pkgsrc.org> | 2002-10-23 17:09:39 +0000 |
---|---|---|
committer | bouyer <bouyer@pkgsrc.org> | 2002-10-23 17:09:39 +0000 |
commit | 7af377bb621fa511477b763ddc3628cb59999e9a (patch) | |
tree | 143aa56ad8a93da8319ac091884885032ed2e90a /x11/gnome-libs | |
parent | 4f03193a135773aa10c558907cc905d4c431e314 (diff) | |
download | pkgsrc-7af377bb621fa511477b763ddc3628cb59999e9a.tar.gz |
test -e doesn't work on solaris, use test -f
Diffstat (limited to 'x11/gnome-libs')
-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: |