diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-08-05 21:23:21 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-08-07 01:19:35 -0400 |
commit | 2b8ea16d92a3bd3a74d30b78991a7d00e7038f58 (patch) | |
tree | dad48c162579a843b33ca8504fc0da8b37ec4547 /hadrian | |
parent | 09bca1de6a336240f4aecfc7c43937dd811d5b22 (diff) | |
download | haskell-2b8ea16d92a3bd3a74d30b78991a7d00e7038f58.tar.gz |
hadrian: Fix installation of system-cxx-std-lib package conf
Diffstat (limited to 'hadrian')
-rw-r--r-- | hadrian/bindist/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hadrian/bindist/Makefile b/hadrian/bindist/Makefile index 93488021e0..b922a60762 100644 --- a/hadrian/bindist/Makefile +++ b/hadrian/bindist/Makefile @@ -233,7 +233,7 @@ install_wrappers: install_bin_libdir PKG_CONFS = $(shell find "$(DESTDIR)$(ActualLibsDir)/package.conf.d" -name '*.conf' | sed "s: :\0xxx\0:g") update_package_db: install_bin install_lib @echo "Installing C++ standard library virtual package" - $(INSTALL_DATA) mk/system-cxx-std-lib-1.0.conf "$(DESTDIR)$(ActualLibsDir)/" + $(INSTALL_DATA) mk/system-cxx-std-lib-1.0.conf "$(DESTDIR)$(ActualLibsDir)/package.conf.d" @echo "Updating the package DB" $(foreach p, $(PKG_CONFS),\ $(call patchpackageconf,$(shell echo $(notdir $p) | sed 's/-\([0-9]*[0-9]\.\)*conf//g'),$(shell echo "$p" | sed 's:\0xxx\0: :g'),$(docdir),$(shell mk/relpath.sh "$(ActualLibsDir)" "$(docdir)"),$(shell echo $(notdir $p) | sed 's/.conf//g'))) |