Commit 66b4ecfa authored by Sam Hocevar's avatar Sam Hocevar

* ./debian/rules: compilation bypasses for the Debian maintainer.

parent 5c4e80aa
......@@ -39,11 +39,11 @@ build-stamp:
# Check that we have an ffmpeg tree in here (can be a symlink)
test -d extras/ffmpeg
(cd extras/ffmpeg && ./configure && make)
if test "$(PRESERVE_EXTRAS)" != "1"; then cd extras/ffmpeg && ./configure && make; fi
# Check that we have an faad tree in here (can be a symlink)
test -d extras/faad
(cd extras/faad && ./configure && cd libfaad && make)
if test "$(PRESERVE_EXTRAS)" != "1"; then cd extras/faad && ./configure && cd libfaad && make; fi
./configure --mandir=$${prefix}/share/man \
--infodir=$${prefix}/share/info $(CONFIG_FLAGS)
......@@ -59,10 +59,10 @@ clean:
# Check that we have an ffmpeg tree in here (can be a symlink)
test -d extras/ffmpeg
-(cd extras/ffmpeg && make distclean)
-if test "$(PRESERVE_EXTRAS)" != "1"; then cd extras/ffmpeg && make distclean; fi
# Check that we have an faad tree in here (can be a symlink)
test -d extras/faad
-(cd extras/faad && make distclean)
-if test "$(PRESERVE_EXTRAS)" != "1"; then cd extras/faad && make distclean; fi
-$(MAKE) distclean
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment