yes, it is not the right fix, but mkdir_p is undefined

SVN revision: 14246
This commit is contained in:
handyande 2005-04-19 10:28:16 +00:00 committed by handyande
parent d8ccfebff3
commit f266a5dcc1
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ all-local: freqset$(EXEEXT)
setuid_root_mode = a=rx,u+s
INSTALL_SU = \
test -z "$(pkgdir)" || $(mkdir_p) "$(DESTDIR)$(pkgdir)"; \
test -z "$(pkgdir)" || mkdir -p "$(DESTDIR)$(pkgdir)"; \
echo "$(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL) -m $(setuid_root_mode) freqset$(EXEEXT) $(DESTDIR)$(pkgdir)/freqset$(EXEEXT)"; \
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL) -m $(setuid_root_mode) freqset$(EXEEXT) $(DESTDIR)$(pkgdir)/freqset$(EXEEXT);