diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-04 16:41:42 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-04 16:41:42 +0200 |
commit | 8b0953a79535296afe06a933e5404d10e8e71d00 (patch) | |
tree | 1eb0630c73d447768fd9c2cece1382a1f32b9d84 /Libraries/LibM | |
parent | 04b9dc2d30cfc9b383029f6a4b02e2725108b0ae (diff) | |
download | serenity-8b0953a79535296afe06a933e5404d10e8e71d00.zip |
Libraries: Unbreak "make install" with new directory locations.
Diffstat (limited to 'Libraries/LibM')
-rw-r--r-- | Libraries/LibM/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibM/Makefile b/Libraries/LibM/Makefile index ae73a473c8..dcf24e57af 100644 --- a/Libraries/LibM/Makefile +++ b/Libraries/LibM/Makefile @@ -20,6 +20,6 @@ clean: install: $(LIBRARY) # Copy headers - rsync -a --include '*/' --include '*.h' --exclude '*' . ../Root/usr/include + rsync -a --include '*/' --include '*.h' --exclude '*' . ../../Root/usr/include # Install the library - cp $(LIBRARY) ../Root/usr/lib + cp $(LIBRARY) ../../Root/usr/lib |