diff options
author | roger <roger@FreeBSD.org> | 2000-11-14 03:14:04 +0800 |
---|---|---|
committer | roger <roger@FreeBSD.org> | 2000-11-14 03:14:04 +0800 |
commit | dc1712bf45983cecc884aea5de333eb6d7ccfaa3 (patch) | |
tree | 0d6603c61390d1d41c96496f537f1c6a2eb3da16 /audio/vorbis-tools | |
parent | 47db8a6f0b0df1c4c428eb204bbb32eda731dfb7 (diff) | |
download | freebsd-ports-gnome-dc1712bf45983cecc884aea5de333eb6d7ccfaa3.tar.gz freebsd-ports-gnome-dc1712bf45983cecc884aea5de333eb6d7ccfaa3.tar.zst freebsd-ports-gnome-dc1712bf45983cecc884aea5de333eb6d7ccfaa3.zip |
Fix build error, requested by the port maintainer
PR: ports/22603
Diffstat (limited to 'audio/vorbis-tools')
-rw-r--r-- | audio/vorbis-tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/vorbis-tools/Makefile b/audio/vorbis-tools/Makefile index 1ca246d5bf91..1deaf41403d5 100644 --- a/audio/vorbis-tools/Makefile +++ b/audio/vorbis-tools/Makefile @@ -32,7 +32,7 @@ MAN1= ogg123.1 post-build: # This is probably evil, and should be in a Makefile. cd ${WRKSRC}/oggenc && ${CC} ${CFLAGS} -c getopt1.c - cd ${WRKSRC}/ogg123 && ${CC} ${CFLAGS} -c ogg123.c -I${LOCALBASE}/include + cd ${WRKSRC}/ogg123 && ${CC} ${CFLAGS} -c ogg123.c -I../oggenc -I${LOCALBASE}/include cd ${WRKSRC}/ogg123 && ${CC} ${LDFLAGS} -o ogg123 ogg123.o ../oggenc/getopt.o ../oggenc/getopt1.o -L${LOCALBASE}/lib -logg -lvorbis -lao -lvorbisfile post-install: |