]> sigrok.org Git - sigrok-firmware-fx2lafw.git/commitdiff
Fixup DESTDIR usage.
authorUwe Hermann <redacted>
Sun, 3 Mar 2013 18:57:18 +0000 (19:57 +0100)
committerUwe Hermann <redacted>
Sun, 3 Mar 2013 19:03:22 +0000 (20:03 +0100)
Drop superfluous slash, otherwise the install directory would be e.g.

 /foo//usr/local/share/sigrok-firmware

or

 //usr/local/share/sigrok-firmware

depending on whether DESTDIR was set via "DESTDIR=/foo", or not.

hw/Makefile.inc

index cb88f52aa566a9b825296c416af1a3446e61f015..b9c7c37583511347b80a14b4bbeeb9368647ad5f 100644 (file)
@@ -46,11 +46,11 @@ $(BASENAME).ihx: fx2lafw $(RELS) $(top_builddir)/fx2lib/lib/fx2.lib $(top_buildd
        $(AM_V_GEN)$(SDCC) -mmcs51 $(SDCC_FLAGS) -o $@ $(RELS) -L$(top_builddir)/fx2lib/lib fx2.lib interrupts/ints.lib
 
 install-data-local: $(BASENAME).fw
-       $(AM_V_at)$(MKDIR_P) $(DESTDIR)/$(FIRMWARE_DIR)
-       $(AM_V_at)$(INSTALL_DATA) $(BASENAME).fw $(DESTDIR)/$(FIRMWARE_DIR)
+       $(AM_V_at)$(MKDIR_P) $(DESTDIR)$(FIRMWARE_DIR)
+       $(AM_V_at)$(INSTALL_DATA) $(BASENAME).fw $(DESTDIR)$(FIRMWARE_DIR)
 
 uninstall-local:
-       $(AM_V_at)-rm -f $(DESTDIR)/$(FIRMWARE_DIR)/$(BASENAME).fw
+       $(AM_V_at)-rm -f $(DESTDIR)$(FIRMWARE_DIR)/$(BASENAME).fw
 
 clean-local:
        $(AM_V_at)-rm -f *.lst *.rel *.rst *.sym *.lnk *.map *.mem *.ihx *.fw