diff options
Diffstat (limited to 'audio')
-rw-r--r-- | audio/libao/Makefile | 1 | ||||
-rw-r--r-- | audio/libogg/Makefile | 1 | ||||
-rw-r--r-- | audio/libvorbis/Makefile | 3 | ||||
-rw-r--r-- | audio/vorbis-tools/Makefile | 5 |
4 files changed, 7 insertions, 3 deletions
diff --git a/audio/libao/Makefile b/audio/libao/Makefile index cd5d53531c17..8278952a6d14 100644 --- a/audio/libao/Makefile +++ b/audio/libao/Makefile @@ -21,6 +21,7 @@ WRKSRC= ${WRKDIR}/ao ACLOCAL?= ${LOCALBASE}/bin/aclocal AUTOHEADER?= ${LOCALBASE}/bin/autoheader +AUTOMAKE_ARGS= --add-missing post-patch: cd ${WRKSRC} && ${ACLOCAL} diff --git a/audio/libogg/Makefile b/audio/libogg/Makefile index 09f1780d4e7f..e98e31d9f00c 100644 --- a/audio/libogg/Makefile +++ b/audio/libogg/Makefile @@ -21,6 +21,7 @@ WRKSRC= ${WRKDIR}/ogg ACLOCAL?= ${LOCALBASE}/bin/aclocal AUTOHEADER?= ${LOCALBASE}/bin/autoheader +AUTOMAKE_ARGS= --add-missing post-patch: cd ${WRKSRC} && ${ACLOCAL} diff --git a/audio/libvorbis/Makefile b/audio/libvorbis/Makefile index 4a07df698e7a..c3ede23fe7da 100644 --- a/audio/libvorbis/Makefile +++ b/audio/libvorbis/Makefile @@ -24,7 +24,8 @@ WRKSRC= ${WRKDIR}/vorbis ACLOCAL?= ${LOCALBASE}/bin/aclocal AUTOHEADER?= ${LOCALBASE}/bin/autoheader CFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ARGS+= --with-ogg=${LOCALBASE} +CONFIGURE_ARGS= --with-ogg=${LOCALBASE} +AUTOMAKE_ARGS= --add-missing post-patch: cd ${WRKSRC} && ${ACLOCAL} diff --git a/audio/vorbis-tools/Makefile b/audio/vorbis-tools/Makefile index 73826a8ce7e6..18b146e14635 100644 --- a/audio/vorbis-tools/Makefile +++ b/audio/vorbis-tools/Makefile @@ -25,8 +25,9 @@ WRKSRC= ${WRKDIR}/vorbis-tools ACLOCAL?= ${LOCALBASE}/bin/aclocal AUTOHEADER?= ${LOCALBASE}/bin/autoheader CFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ARGS+= --with-ogg=${LOCALBASE} \ - --with-ao=${LOCALBASE} +CONFIGURE_ARGS= --with-ogg=${LOCALBASE} \ + --with-ao=${LOCALBASE} +AUTOMAKE_ARGS= --add-missing MAN1= ogg123.1 |