summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorAlexei Podtelezhnikov <apodtele@gmail.com>2021-01-07 00:13:23 -0500
committerAlexei Podtelezhnikov <apodtele@gmail.com>2021-01-07 00:13:23 -0500
commit6369058eee2e9d82de3c203a119600a769b485c8 (patch)
tree800aaaccc4dece3f69615267858d4a98e31e5f40 /autogen.sh
parentf88c00e45a2f503f8a62bb9cc963ece5c46fc7d5 (diff)
downloadfreetype2-6369058eee2e9d82de3c203a119600a769b485c8.tar.gz
[dlg] Move the headers to include/dlg to simplify their use.
* autogen.sh, builds/toplevel.mk: Copy headers to incluide/dlg. * builds/freetype.mk, builds/windows/vc2010/freetype.vcxproj: Simplify included path. * include/freetype/internal/ftdebug.h: Simplify #include. * src/dlg/rules.mk, .gitignore: Updated.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh
index fd5fa1f93..77656d661 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -165,10 +165,10 @@ chmod +x ./configure
# Copy all necessary 'dlg' files.
copy_submodule_files ()
{
- echo "Copying files from \`submodules/dlg' to \`src/dlg'"
- mkdir src/dlg/dlg 2> /dev/null
- cp $DLG_INC_DIR/dlg.h src/dlg/dlg
- cp $DLG_INC_DIR/output.h src/dlg/dlg
+ echo "Copying files from \`submodules/dlg' to \`src/dlg' and \`include/dlg'"
+ mkdir include/dlg 2> /dev/null
+ cp $DLG_INC_DIR/output.h include/dlg
+ cp $DLG_INC_DIR/dlg.h include/dlg
cp $DLG_SRC_DIR/* src/dlg
}