1
1

Fix the makefile to install the perl scripts properly

This commit was SVN r26416.
Этот коммит содержится в:
Ralph Castain 2012-05-09 14:06:02 +00:00
родитель 50bac6d4d7
Коммит 640f0610aa

Просмотреть файл

@ -56,10 +56,16 @@ endif
HDFSFileFinder.class: HDFSFileFinder.java
$(JAVAC) -d . -classpath $(hadoop_jars) $(top_srcdir)/orte/tools/allocators/HDFSFileFinder.java
install-exec-hook:
test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
(cp hdfsalloc.pl $(DESTDIR)$(bindir))
(cd $(DESTDIR)$(bindir); chmod +x hdfsalloc.pl; rm -f hdfsalloc; $(LN_S) hdfsalloc.pl hdfsalloc)
uninstall-local:
rm -f $(DESTDIR)$(bindir)/hdfsalloc.pl \
$(DESTDIR)$(bindir)/hdfsalloc
# Generate the .jar file
hdfsalloc.jar: HDFSFileFinder.class
$(ORTE_V_JAR) $(JAR) cf hdfsalloc.jar HDFSFileFinder.class