aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-04-16 01:31:40 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-04-16 01:31:40 +0000
commit56bf8595cd5aebade3d49fa1d59ee27994153206 (patch)
tree4cff52b3e74aad9f39520045e7706642c1219ca1
parent28979f421bb18336639cf8538f82d68de1f4a098 (diff)
move libdir ln -s statement since on MinGW ln is actually cp, and the target needs to be there first
svn path=/trunk/; revision=15072
-rwxr-xr-xpackages/win32_inno/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile
index 17b60e47..a61f7e6a 100755
--- a/packages/win32_inno/Makefile
+++ b/packages/win32_inno/Makefile
@@ -49,10 +49,6 @@ pd_install: build_pd
# install notes.txt into the help browser
install -d $(DESTDIR)$(manualsdir)/$(PD_NAME)
install -p $(pd_src)/src/notes.txt $(DESTDIR)$(manualsdir)/$(PD_NAME)
-# make libdir start automatically by being in new 'startup' folder
- install -d $(DESTDIR)$(libpddir)/startup
- ln -s ../extra/libdir/libdir.$(EXTENSION) \
- $(DESTDIR)$(libpddir)/startup/libdir.$(EXTENSION)
install: pd_install prebuilt_install lib_install exe_install
@echo " "
@@ -64,6 +60,11 @@ prebuilt_install:
$(MAKE) -C $(packages_src) $(DEST_PATHS) doc_format
install -p pd-settings.reg $(DESTDIR)$(prefix)
install -p pd-extended.bat $(DESTDIR)$(prefix)
+# make libdir start automatically by being in new 'startup' folder
+ install -d $(DESTDIR)$(libpddir)/startup
+ ln -s ../extra/libdir/libdir.$(EXTENSION) \
+ $(DESTDIR)$(libpddir)/startup/libdir.$(EXTENSION)
+
#==============================================================================#
#