diff options
author | rillig <rillig@pkgsrc.org> | 2007-12-10 22:49:19 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-12-10 22:49:19 +0000 |
commit | 4290fb40eb3f8cb7f08d9450a71aa2aef1c30f76 (patch) | |
tree | 9236df902ec0a8f000ff42fb7e7dc1820eefada9 /mk | |
parent | 3360272bc8cf3fcfc0551957eb0151f34dc58656 (diff) | |
download | pkgsrc-4290fb40eb3f8cb7f08d9450a71aa2aef1c30f76.tar.gz |
Added compatibility code for INSTALLATION_DIRS_FROM_PLIST. I had
intended that all the time, but didn't test enough. :(
Thanks to wiz for catching this one.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/install/install.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/install/install.mk b/mk/install/install.mk index e076258f577..1491962797f 100644 --- a/mk/install/install.mk +++ b/mk/install/install.mk @@ -1,4 +1,4 @@ -# $NetBSD: install.mk,v 1.49 2007/12/07 05:25:25 rillig Exp $ +# $NetBSD: install.mk,v 1.50 2007/12/10 22:49:19 rillig Exp $ # # This file provides the code for the "install" phase. # @@ -163,6 +163,7 @@ _INSTALL_ALL_TARGETS+= check-files-pre _INSTALL_ALL_TARGETS+= install-makedirs .if defined(INSTALLATION_DIRS_FROM_PLIST) && \ !empty(INSTALLATION_DIRS_FROM_PLIST:M[Yy][Ee][Ss]) +_INSTALL_ALL_TARGETS+= install-dirs-from-PLIST .elif defined(AUTO_MKDIRS) && !empty(AUTO_MKDIRS:M[Yy][Ee][Ss]) _INSTALL_ALL_TARGETS+= install-dirs-from-PLIST .endif |