Skip to content

Commit

Permalink
Fix the install of the PHP bindings
Browse files Browse the repository at this point in the history
Fixes #9551.  There's no need to redefine INSTALL=, it comes from config.mak.
Also tweaked a $() -> ${} for consistency
  • Loading branch information
Beirdo committed Apr 8, 2011
1 parent 268287d commit 74d3455
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mythtv/bindings/php/Makefile
Expand Up @@ -5,14 +5,13 @@ FILES += MythTV.php MythTVProgram.php MythTVRecording.php
FILES += MythTVStorageGroup.php

INSTDIR = ${INSTALL_ROOT}${PREFIX}/share/mythtv/bindings/php
INSTALL = /usr/bin/install

all:
clean:
distclean: clean

install:
$(INSTALL) -m 755 -d ${INSTDIR}/
${INSTALL} -m 755 -d ${INSTDIR}/
for i in ${FILES} ; do ${INSTALL} -m 644 $$i ${INSTDIR}/ ; done

uninstall:
Expand Down

0 comments on commit 74d3455

Please sign in to comment.