diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2003-09-24 13:44:47 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2003-09-24 13:44:47 +0000 |
commit | 3c1e943fed4cbbe904bbdd0497306de0767f196d (patch) | |
tree | f751dfa1cf6390dd26b6e1c3207da8e7a7a22072 /databases | |
parent | Use ${STRIP_CMD} instead of /usr/bin/strip. (diff) |
Use ${STRIP_CMD} instead of strip.
Founded by: Oleg Karachevtsev <ok at etrust dot ru>
Notes
Notes:
svn path=/head/; revision=89220
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgresql72/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/postgresql72/Makefile b/databases/postgresql72/Makefile index a4805d272630..3648acfbf82e 100644 --- a/databases/postgresql72/Makefile +++ b/databases/postgresql72/Makefile @@ -128,12 +128,12 @@ post-install: tee ${PREFIX}/share/postgresql/post-install-notes .if !defined(DEBUG_FLAGS) .for file in ecpg pg_dump pg_id pg_passwd pg_restore psql - @ strip ${PREFIX}/bin/${file} + @ ${STRIP_CMD} ${PREFIX}/bin/${file} .endfor .endif .if !defined(WITHOUT_SERVER) # install shell defaults for pgsql user - @ strip ${PREFIX}/bin/postgres + @ ${STRIP_CMD} ${PREFIX}/bin/postgres .for i in profile cshrc @ ${SED} "s|%%PREFIX%%|${PREFIX}|g" \ < ${FILESDIR}/dot.$i.in \ |