diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-08-24 16:39:04 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-08-24 16:39:04 +0000 |
commit | b8ac4251de0192af3b59b11bdb4ea9e262e1b351 (patch) | |
tree | 1f62029e064fa98967953e78c3a342b88d319474 /audio | |
parent | Change the MASTER_SITE back to the official Mozilla FTP servers. Note, (diff) |
Check ${PREFIX}/etc rather than /etc for the configuration file.
requested by: Raphael H. Becker
Notes
Notes:
svn path=/head/; revision=87613
Diffstat (limited to 'audio')
-rw-r--r-- | audio/aumix/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/audio/aumix/Makefile b/audio/aumix/Makefile index a656d9c5f793..d3a3ee40e2e7 100644 --- a/audio/aumix/Makefile +++ b/audio/aumix/Makefile @@ -40,6 +40,13 @@ pre-extract: @sleep 3 .endif +do-patch: +.for ii in c h + ${CP} -p ${WRKSRC}/src/common.${ii} ${WRKSRC}/src/common.${ii}.orig + ${SED} -e "s:/etc:${PREFIX}/etc:" < ${WRKSRC}/src/common.${ii}.orig \ + > ${WRKSRC}/src/common.${ii} +.endfor + .if (${HAVE_GNOME:Mgtk12}!="") && !defined(WITHOUT_ALL) && \ !defined(WITHOUT_GTK)&& !defined(WITH_GTK2) USE_GNOME= gtk12 |