[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug #24613] make overwrites bundles Info-gnustep.plist
From: |
Michael Johnston |
Subject: |
[bug #24613] make overwrites bundles Info-gnustep.plist |
Date: |
Mon, 20 Oct 2008 10:44:03 +0000 |
User-agent: |
Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_5; en-us) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.2 Safari/525.20.1 |
URL:
<http://savannah.gnu.org/bugs/?24613>
Summary: make overwrites bundles Info-gnustep.plist
Project: GNUstep
Submitted by: mjohnston
Submitted on: Mon 20 Oct 2008 10:44:02 AM GMT
Category: Makefiles
Severity: 3 - Normal
Item Group: Bug
Status: None
Privacy: Public
Assigned to: None
Open/Closed: Open
Discussion Lock: Any
_______________________________________________________
Details:
I have a number of bundles with Info-gnustep.plist files which contain extra
information used by my app. Previous to gnustep-make 2.0.6 these were
installed without a problem. However now they are replaced with a default
plist on bundle creation. I compared the output of make messasges=yes for
2.0.4 and 2.0.6 and it appears a final set of commands is no longer run.
V 2.0.4
echo "OLD_GNUSTEP_STAMP_ASTRING = _EnergyConverter-" >
./EnergyConverter/stamp.make
(echo "{"; echo ' NOTE = "Automatically generated, do not edit!";'; \
echo " NSExecutable = \"EnergyConverter\";"; \
echo " NSMainNibFile = \"\";"; \
echo " NSPrincipalClass = \"EnergyConverter\";"; \
echo "}") >EnergyConverter/Resources/Info-gnustep.plist
if [ -r "EnergyConverterInfo.plist" ]; then \
plmerge EnergyConverter/Resources/Info-gnustep.plist
EnergyConverterInfo.plist; \
fi
for f in Resources/Info-gnustep.plist; do \
if [ -f $f -o -d $f ]; then \
cp -fr $f ./EnergyConverter/Resources/; \
else \
echo "Warning: $f not found - ignoring"; \
fi; \
done
v 2.0.6
(echo "{"; echo ' NOTE = "Automatically generated, do not edit!";'; \
echo " NSExecutable = \"EnergyConverter\";"; \
echo " NSMainNibFile = \"\";"; \
echo " NSPrincipalClass = \"EnergyConverter\";"; \
echo "}") >EnergyConverter/Resources/Info-gnustep.plist
if [ -r "EnergyConverterInfo.plist" ]; then \
plmerge EnergyConverter/Resources/Info-gnustep.plist
EnergyConverterInfo.plist; \
fi
_______________________________________________________
Reply to this item at:
<http://savannah.gnu.org/bugs/?24613>
_______________________________________________
Message sent via/by Savannah
http://savannah.gnu.org/
- [bug #24613] make overwrites bundles Info-gnustep.plist,
Michael Johnston <=