diff options
author | Loïc Minier <lool@dooz.org> | 2010-01-30 14:57:13 +0100 |
---|---|---|
committer | Loïc Minier <lool@dooz.org> | 2010-01-30 14:57:13 +0100 |
commit | 5409d849484ecdc365946695007d2c1b3aafae21 (patch) | |
tree | bd874149856ec3fd8ec10228e2f04c8277d9d0f5 /Makefile | |
parent | 9c6b310b3e895fb0382d907e9bef5dd9fb9c47b9 (diff) | |
download | pbuilder-5409d849484ecdc365946695007d2c1b3aafae21.tar pbuilder-5409d849484ecdc365946695007d2c1b3aafae21.tar.gz |
Use $(MAKE) -C instead of cd; make and use $@
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -143,6 +143,6 @@ install: $(INSTALL_EXECUTABLE) examples/E50-initscripts-2.86.ds1-7.workaround.sh $(DESTDIR)/usr/share/doc/pbuilder/examples/workaround $(INSTALL_EXECUTABLE) examples/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh $(DESTDIR)/usr/share/doc/pbuilder/examples/workaround - cd pbuildd; make install DESTDIR=$(DESTDIR) - cd Documentation; make install DESTDIR=$(DESTDIR) + $(MAKE) -C pbuildd $@ + $(MAKE) -C Documentation $@ |